/* =========================================
   ROOT VARIABLES
========================================= */

:root {
  --black: #0a0a0a;
  --white: #f5f3ee;
  --accent: #e84c1e;
  --accent2: #f0a500;
  --track: #141414;
  --card: #111111;
  --muted: #5a5a52;
  --border: rgba(245,243,238,0.1);
}

/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);

  font-family: 'Syne', sans-serif;

  overflow-x: hidden;

  cursor: none;
}

/* =========================================
   CUSTOM CURSOR
========================================= */

.cursor-dot {
  width: 8px;
  height: 8px;

  background: var(--accent);

  border-radius: 50%;

  position: fixed;
  top: 0;
  left: 0;

  pointer-events: none;

  z-index: 99999;

  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 32px;
  height: 32px;

  border: 1.5px solid rgba(232,76,30,0.55);

  border-radius: 50%;

  position: fixed;
  top: 0;
  left: 0;

  pointer-events: none;

  z-index: 99998;

  transform: translate(-50%, -50%);
}

a,
button {
  cursor: none;
}

/* =========================================
   NAVBAR
========================================= */

nav {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1.5rem 3rem;

  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.95),
    transparent
  );
}

.nav-logo {
  text-decoration: none;

  color: var(--white);

  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;

  letter-spacing: 0.12em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;

  list-style: none;
}

.nav-links a {
  text-decoration: none;

  color: rgba(255,255,255,0.6);

  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  transition: 0.3s ease;
}

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

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

.hero {
  min-height: 100vh;

  display: grid;
  grid-template-columns: 52% 48%;
}

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

.hero-left {
  padding: 9rem 4rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  color: var(--accent);

  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;

  letter-spacing: 0.3em;
  text-transform: uppercase;

  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;

  font-size: clamp(5rem, 10vw, 10rem);

  line-height: 0.9;
}

.hero-name em {
  display: block;

  color: var(--accent);

  font-style: normal;
}

.hero-desc {
  margin-top: 2rem;

  max-width: 520px;

  color: var(--muted);

  line-height: 1.8;

  font-family: 'DM Mono', monospace;
  font-size: 0.9rem;
}

/* =========================================
   QUICK STATS
========================================= */

.hero-quickstats {
  display: flex;
  gap: 3rem;

  margin-top: 3rem;
  padding-top: 2rem;

  border-top: 1px solid var(--border);
}

.hqs-num {
  color: var(--accent2);

  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
}

.hqs-label {
  color: var(--muted);

  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  margin-top: 0.2rem;
}

/* =========================================
   BUTTONS
========================================= */

.hero-actions {
  display: flex;
  gap: 1rem;

  margin-top: 2.5rem;
}

.btn {
  text-decoration: none;

  padding: 1rem 2rem;

  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;

  text-transform: uppercase;
  letter-spacing: 0.18em;

  transition: 0.3s ease;
}

.btn-solid {
  background: var(--accent);

  color: var(--white);

  border: 1px solid var(--accent);
}

.btn-solid:hover {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  border: 1px solid var(--border);

  color: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

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

.hero-right {
  background: var(--track);

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* =========================================
   RINGS
========================================= */

.hero-ring-wrap {
  position: relative;

  width: 210px;
  height: 210px;
}

.hero-ring-wrap svg,
.ring-wrap svg {
  transform: rotate(-90deg);
}

.ring-bg-h,
.ring-bg {
  fill: none;

  stroke: rgba(255,255,255,0.08);
}

.ring-bg-h {
  stroke-width: 14;
}

.ring-bg {
  stroke-width: 12;
}

.ring-fill-h,
.ring-fill {
  fill: none;

  stroke-linecap: round;
}

.ring-fill-h {
  stroke: url(#heroGrad);
  stroke-width: 14;
}

.ring-fill {
  stroke: var(--accent);
  stroke-width: 12;
}

.hero-ring-center,
.ring-center {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hrc-pct {
  color: var(--accent);

  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
}

.hrc-label {
  color: var(--muted);

  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =========================================
   KM DISPLAY
========================================= */

.hero-km-display {
  margin-top: 3rem;
  text-align: center;
}

.hero-km-row {
  display: flex;
  align-items: baseline;
  justify-content: center;

  gap: 0.5rem;
}

.hero-km-done,
.hero-km-goal {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
}

.hero-km-done {
  color: var(--accent);
}

.hero-km-goal {
  color: rgba(255,255,255,0.15);
}

.hero-km-sub {
  margin-top: 0.5rem;

  color: var(--muted);

  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;

  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* =========================================
   PROGRESS BAR
========================================= */

.hero-pbar-wrap,
.pbar-wrap {
  margin-top: 1rem;
}

.hero-pbar-track,
.pbar-track {
  height: 3px;

  background: rgba(255,255,255,0.08);
}

.hero-pbar-fill,
.pbar-fill {
  width: 10.22%;
  height: 100%;

  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent2)
  );
}

.hero-pbar-label,
.pbar-meta {
  display: flex;
  justify-content: space-between;

  margin-top: 0.5rem;
}

.hero-pbar-label span,
.pbar-meta span {
  color: var(--muted);

  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
}

/* =========================================
   SMALL STATS
========================================= */

.hero-stat-row,
.gstats {
  border: 1px solid var(--border);
}

.hero-stat-row {
  width: 280px;

  margin-top: 2rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-stat-cell,
.gstat {
  padding: 1rem;
}

.hero-stat-cell {
  border-right: 1px solid var(--border);
}

.hero-stat-cell:last-child {
  border-right: none;
}

.hero-stat-num,
.gstat-num {
  color: var(--accent2);

  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
}

.hero-stat-lbl,
.gstat-label {
  color: var(--muted);

  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================
   GHOST WORD
========================================= */

.ghost-word {
  position: absolute;

  right: 2rem;
  bottom: 1rem;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;

  opacity: 0.03;
}

/* =========================================
   TICKER
========================================= */

.ticker {
  overflow: hidden;

  background: var(--track);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  padding: 1rem 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;

  width: max-content;

  animation: ticker 28s linear infinite;
}

.ticker-item {
  white-space: nowrap;

  color: var(--muted);

  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;

  letter-spacing: 0.2em;
}

@keyframes ticker {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

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

.goal-section,
.about-section,
.media-section {
  padding: 6rem 3.5rem;
}

.goal-section,
.media-section {
  background: var(--track);
}

.goal-inner,
.about-grid {
  max-width: 1300px;

  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 5rem;
}

.section-label {
  color: var(--accent);

  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;

  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-title {
  margin: 1rem 0 2rem;

  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);

  line-height: 0.95;
}

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

.about-body p {
  color: rgba(245,243,238,0.65);

  line-height: 1.9;

  font-size: 1rem;

  margin-bottom: 1.5rem;
}

.about-pullquote {
  padding: 1.5rem;

  margin: 2rem 0;

  border-left: 3px solid var(--accent);

  background: rgba(232,76,30,0.05);
}

.about-pullquote p {
  color: var(--white);

  font-size: 1.1rem;
  font-weight: 700;
}

.about-pullquote span {
  color: var(--accent);

  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;

  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.about-card {
  background: var(--card);

  border: 1px solid var(--border);

  padding: 2.5rem;
}

.about-card-title {
  margin-bottom: 1.5rem;

  color: var(--accent2);

  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;

  letter-spacing: 0.15em;
}

.trait-list {
  list-style: none;
}

.trait-list li {
  margin-bottom: 1rem;

  color: rgba(245,243,238,0.7);

  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;

  line-height: 1.7;
}

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

.media-inner {
  max-width: 1400px;
  margin: auto;
}

.media-tabs {
  display: flex;

  margin-bottom: 2rem;

  border-bottom: 1px solid var(--border);
}

.media-tab {
  background: none;
  border: none;

  padding: 1rem 1.5rem;

  color: var(--muted);

  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;

  text-transform: uppercase;
  letter-spacing: 0.2em;

  border-bottom: 2px solid transparent;

  transition: 0.3s ease;
}

.media-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
}

/* =========================================
   VIDEO GRID
========================================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 0.8rem;
}

.vcard {
  position: relative;

  overflow: hidden;

  background: var(--card);

  border: 1px solid var(--border);
}

.vcard-sizer::before {
  content: "";
  display: block;
  padding-top: 150%;
}

.vcard video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.vcard-label {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 2rem 1rem 1rem;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    transparent
  );
}

.vcard-label-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;

  letter-spacing: 0.1em;
}

.vcard-label-sub {
  color: var(--accent);

  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;

  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.vcard-filename,
.pcard-filename {
  position: absolute;

  left: 0.7rem;

  background: rgba(0,0,0,0.7);

  padding: 0.2rem 0.5rem;

  color: var(--muted);

  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
}

.vcard-filename {
  top: 0.7rem;
}

/* =========================================
   PHOTOS
========================================= */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 0.8rem;
}

.pcard {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1;

  border: 1px solid var(--border);
}

.pcard img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.pcard-filename {
  bottom: 0.7rem;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width: 900px) {

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .goal-inner,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 7rem 2rem 3rem;
  }

  .hero-right {
    padding: 4rem 2rem;
  }

  .goal-section,
  .about-section,
  .media-section {
    padding: 4rem 1.5rem;
  }

  .video-grid,
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* =========================================
   CONTACT
========================================= */

.contact-section {
  padding: 6rem 3.5rem;

  background: var(--black);
}

.contact-inner {
  max-width: 1200px;
  margin: auto;
}

.contact-desc {
  max-width: 650px;

  color: rgba(245,243,238,0.65);

  line-height: 1.9;

  font-size: 1rem;

  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;
}

.contact-card {
  background: var(--card);

  border: 1px solid var(--border);

  padding: 2rem;

  transition: 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(232,76,30,0.5);

  transform: translateY(-4px);
}

.contact-card-label {
  color: var(--accent);

  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  margin-bottom: 1rem;
}

.contact-link {
  color: var(--white);

  text-decoration: none;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;

  letter-spacing: 0.04em;

  transition: 0.3s ease;
}

.contact-link:hover {
  color: var(--accent2);
}

/* =========================================
   MOBILE CONTACT
========================================= */

@media(max-width: 900px) {

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

}