@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-1: #06121f;
  --bg-2: #0c1f33;
  --bg-3: #142b45;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.2);
  --text: #ecf3ff;
  --muted: #bfd1ea;
  --accent: #6bc2ff;
  --accent-soft: #9fd7ff;
  --gold: #d6b06b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 85% -5%, rgba(105, 194, 255, 0.28), transparent 58%),
    radial-gradient(850px 540px at -10% 25%, rgba(214, 176, 107, 0.18), transparent 58%),
    linear-gradient(155deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  z-index: -1;
}

.shell {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 15, 25, 0.72);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.69rem;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 9px 14px;
  transition: 140ms ease;
}

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

main {
  padding: 40px 0 60px;
}

.hero {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 40px);
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(107, 194, 255, 0.15);
  color: var(--accent-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.62;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 700;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #94d9ff);
  color: #031522;
  border-color: transparent;
}

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

.stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--accent-soft);
}

.stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.87rem;
}

.section {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.24);
  padding: 24px;
}

.section h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.section p.lead {
  margin: 0 0 18px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.card {
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 18px;
}

.card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.card h3 a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 140ms ease, border-color 140ms ease;
}

.card h3 a:hover {
  color: var(--accent-soft);
  border-color: rgba(159, 215, 255, 0.8);
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.card ul {
  margin: 10px 0 0;
  color: var(--muted);
  padding-left: 18px;
  line-height: 1.55;
}

.badge {
  display: inline-block;
  margin-top: 12px;
  border: 1px solid rgba(214, 176, 107, 0.6);
  color: #f4dbad;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 9px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
}

.timeline .step {
  border-left: 2px solid rgba(107, 194, 255, 0.5);
  padding: 0 0 18px 14px;
  margin-left: 6px;
}

.timeline .step:last-child {
  padding-bottom: 0;
}

.timeline h4 {
  margin: 0;
  font-size: 1rem;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.52;
}

.quote {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(214, 176, 107, 0.09);
  padding: 18px;
  color: #f6e8ce;
  line-height: 1.58;
}

.footer {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.kit-grid .card {
  grid-column: span 4;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 20px;
}

.contact-box ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.58;
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.jump-links a {
  text-decoration: none;
  color: var(--accent-soft);
  border: 1px solid rgba(159, 215, 255, 0.45);
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 7px 11px;
}

.jump-links a:hover {
  background: rgba(159, 215, 255, 0.12);
}

.meta-row {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 14px;
}

.video-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.video-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.embed-wrap {
  margin-top: 10px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #030a11;
  aspect-ratio: 16 / 9;
}

.embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.inline-link {
  color: var(--accent-soft);
}

.inline-link:hover {
  color: #d6ecff;
}

.skip-note {
  border: 1px solid rgba(214, 176, 107, 0.55);
  background: rgba(214, 176, 107, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
  color: #f4dfb6;
  margin-top: 14px;
  font-size: 0.9rem;
}

.profile-main {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.profile-main img {
  display: block;
  width: 100%;
  height: auto;
}

.portrait-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.media-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.media-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.media-figure figcaption {
  padding: 9px 11px;
  font-size: 0.82rem;
  color: var(--muted);
}

.image-panel {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.image-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.image-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kit-grid .card,
  .card,
  .video-card {
    grid-column: span 12;
  }

  .portrait-grid,
  .image-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    border: 1px solid var(--line);
    background: rgba(5, 15, 25, 0.96);
    padding: 10px;
    border-radius: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 12px;
  }
}
