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

html, body {
  overflow-x: hidden;
}

:root {
  --gutter: clamp(20px, 5vw, 48px);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

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

.hero-avatar {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  padding: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 8px 32px rgba(0,0,0,0.5);
}

.hero-avatar::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.5) 70%,
    rgba(255,255,255,0.08)
  );
  z-index: 0;
  animation: avatar-spin 6s linear infinite;
}

@keyframes avatar-spin {
  to { transform: rotate(360deg); }
}

.hero-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  background: #1a1a1a;
}

.hero-avatar.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: rgba(255,255,255,0.3);
}

.hero-avatar.avatar-placeholder::after {
  content: "👤";
  position: relative;
  z-index: 1;
}



.hero {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-top: clamp(48px, 8vw, 90px);
  padding-bottom: clamp(40px, 6vw, 70px);
}

.pill {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 8px 14px;
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 900;
  max-width: 850px;
  word-break: break-word;
}

.hero p {
  margin-top: 22px;
  max-width: 700px;
  color: #b8b8b8;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
}

/* ===================== SECTIONS ===================== */

section {
  padding: clamp(40px, 6vw, 70px) 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f8f8f;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.helper {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 10px 14px;
  color: #a7a7a7;
  font-size: 14px;
}

/* ===================== CARDS ===================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 20px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  outline: none;
  min-width: 0;
}

.card:hover,
.card:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.card:focus-visible {
  box-shadow: 0 0 0 2px #ffffff44;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #131313;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  border-radius: 18px;
  transition: background 0.2s ease;
}

.card:hover .video-placeholder::after {
  background: rgba(0,0,0,0.15);
}

.play-icon {
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease, transform 0.2s ease;
}

.card:hover .play-icon {
  color: rgba(255,255,255,0.9);
  transform: scale(1.15);
}

.play-icon.on-cover {
  color: rgba(255,255,255,0.75);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.card:hover .play-icon.on-cover {
  color: #ffffff;
}

.cover-still {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 24px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.cover-coming-soon span {
  font-size: 28px;
  color: rgba(255,255,255,0.4);
}

.cover-coming-soon p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cover-still::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.cover-play {
  font-size: 40px;
  color: rgba(255,255,255,0.3);
}

.tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: #d9d9d9;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card p {
  color: #aaaaaa;
  font-size: 15px;
}

.card-cta {
  margin-top: 16px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.card:hover .card-cta {
  color: #ffffff;
}

.card-cta .arrow {
  transition: transform 0.2s ease;
}

.card:hover .card-cta .arrow {
  transform: translateX(4px);
}

/* ===================== INFO BAND ===================== */

.info-band {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.info-box,
.panel {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 24px;
  min-width: 0;
}

.info-box h3,
.panel h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.info-box p,
.panel p,
.panel li {
  color: #bbbbbb;
}

.panel ol {
  padding-left: 20px;
  margin-top: 18px;
}

.panel li {
  margin-bottom: 12px;
}

/* ===================== EMAIL FORM ===================== */

.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.email-form input {
  flex: 1 1 min(260px, 100%);
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #131313;
  color: #ffffff;
}

.email-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 16px;
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
}

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

footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 26px 0;
}

.footer-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #9d9d9d;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #ffffff;
}

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

.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.gallery-modal {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  width: min(960px, 100%);
  min-width: 0;
  padding: 30px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-overlay.open .gallery-modal {
  transform: translateY(0);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

.gallery-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 6px;
}

.gallery-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}

.gallery-close {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #aaaaaa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.gallery-close:hover {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
}

.gallery-featured {
  margin-bottom: 28px;
}

.gallery-main-video {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
}

.video-embed-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  position: relative;
}

.video-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-embed-wrapper .embed-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.video-embed-wrapper .embed-placeholder .big-play {
  font-size: 48px;
  color: rgba(255,255,255,0.12);
}

.video-embed-wrapper .embed-placeholder p {
  font-size: 14px;
  color: #555;
}

.gallery-main-meta {
  padding: 20px 22px;
}

.gallery-main-tag {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  color: #cccccc;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.gallery-main-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-main-desc {
  color: #999999;
  font-size: 14px;
}

.gallery-strip-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 12px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
  gap: 14px;
}

.gallery-thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  background: #0d0d0d;
  min-width: 0;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.25);
}

.gallery-thumb.active {
  border-color: #ffffff;
}

.gallery-thumb-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-thumb-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s ease;
}

.gallery-thumb:hover .gallery-thumb-video::after,
.gallery-thumb.active .gallery-thumb-video::after {
  background: rgba(0,0,0,0.15);
}

.thumb-play-icon {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease, transform 0.2s ease;
}

.gallery-thumb:hover .thumb-play-icon,
.gallery-thumb.active .thumb-play-icon {
  color: rgba(255,255,255,0.95);
  transform: scale(1.15);
}

.gallery-thumb-meta {
  padding: 10px 12px;
}

.gallery-thumb-label {
  font-size: 12px;
  font-weight: 600;
  color: #e0e0e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-thumb-sub {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

body.gallery-open {
  overflow: hidden;
}

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

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-modal {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .gallery-strip {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

h1, h2, h3, p {
  max-width: 65ch;
}

section {
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
h1, h2 {
  letter-spacing: -0.02em;
}

.hero {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-block: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}