/* [project]/src/styles/tokens.css [app-client] (css) */
:root {
  --bg-black: #000;
  --surface-black: #0a0a0a;
  --surface-elevated: #111;
  --text-white: #f6f6f6;
  --text-muted: #a6a6a6;
  --accent-yellow: #ffe600;
  --text-dark: #0a0a0a;
  --bg: var(--bg-black);
  --text: var(--text-white);
  --muted: var(--text-muted);
  --accent: var(--text-white);
  --card: #ffffff0a;
  --border: #ffffff2e;
  --radius: 4px;
  --shadow: 0 16px 34px #00000073;
  --max-width: 1360px;
  --container-px: clamp(14px, 3vw, 20px);
  --card-px: clamp(14px, 2.4vw, 20px);
  --section-y: clamp(36px, 5vw, 72px);
  --h1: clamp(34px, 5.5vw, 58px);
  --h2: clamp(22px, 3.2vw, 28px);
  --hero-title: clamp(32px, 5vw, 52px);
  --nav-font: clamp(12px, 1vw, 15px);
  --body: 1rem;
  --muted-font: .95rem;
  --btn-py: clamp(10px, 1.5vw, 12px);
  --btn-px: clamp(14px, 2vw, 18px);
}

/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  line-height: 1.5;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

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

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.card {
  padding: var(--card-px);
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.btn {
  padding: var(--btn-py) var(--btn-px);
  cursor: pointer;
  background: var(--accent);
  color: var(--text-dark);
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: .01em;
  text-transform: uppercase;
  border: 1px solid #ffffffe6;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.btnSecondary {
  background: var(--surface-black);
  color: var(--text-white);
  border: 1px solid #ffffffa6;
  font-weight: 600;
}

.btnGhost {
  border: 1px solid var(--border);
  color: var(--text-white);
  background: none;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.hyroxHome {
  background: #000;
  min-height: 100vh;
}

.hyroxTopBar {
  z-index: 4;
  padding-top: 14px;
  position: relative;
}

.hyroxTopBarInner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  display: flex;
}

.hyroxLogo {
  letter-spacing: .38em;
  text-transform: uppercase;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
}

.hyroxActions {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.hyroxNav {
  margin-top: 10px;
  padding: 10px 0;
}

.hyroxNavList {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.hyroxNavList a {
  font-size: var(--nav-font);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-white);
}

.hyroxHero {
  min-height: clamp(420px, 70vh, 760px);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.hyroxHeroImage {
  filter: grayscale() contrast(1.05);
  background-image: linear-gradient(90deg, #00000014 36%, #000000e0 78%), url("https://images.unsplash.com/photo-1517963879433-6ad2b056d712?auto=format&fit=crop&w=1800&q=80&sat=-100");
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.hyroxHeroContent {
  z-index: 2;
  min-height: inherit;
  justify-content: flex-end;
  align-items: flex-end;
  padding: clamp(20px, 4vw, 34px);
  display: flex;
  position: relative;
}

.hyroxHeadlinePanel {
  background: var(--text-white);
  max-width: min(520px, 92vw);
  color: var(--text-dark);
  padding: clamp(16px, 2.8vw, 30px);
}

.hyroxHeadlinePanel h1 {
  font-size: var(--hero-title);
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  line-height: 1.06;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

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

  .hyroxActions {
    width: 100%;
  }

  .hyroxActions .btn {
    flex: calc(50% - 10px);
  }

  .hyroxNavList {
    gap: 14px;
  }

  .hyroxHero {
    min-height: 520px;
  }

  .hyroxHeroContent {
    justify-content: center;
    align-items: flex-end;
  }

  .hyroxHeadlinePanel {
    width: 100%;
  }
}

.adminAuthPage {
  background: var(--bg-black);
  place-items: center;
  min-height: 100vh;
  padding: 24px 14px;
  display: grid;
}

.adminAuthCard {
  border: 1px solid var(--border);
  background: var(--surface-black);
  width: min(520px, 96vw);
  padding: clamp(18px, 2.5vw, 28px);
}

.adminAuthTitle {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.adminAuthSubtitle {
  color: var(--muted);
  margin: 10px 0 0;
}

.adminAuthForm {
  gap: 12px;
  margin-top: 18px;
  display: grid;
}

.adminField {
  gap: 6px;
  display: grid;
}

.adminField span {
  color: var(--text-muted);
  font-size: .9rem;
}

.adminField input {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text-white);
  background: #000;
  min-height: 44px;
  padding: 10px 12px;
}

.adminError {
  color: #ff7f7f;
  margin: 0;
  font-size: .92rem;
}

.adminInfoList {
  color: var(--text-white);
  gap: 8px;
  margin: 16px 0 18px;
  display: grid;
}

/*# sourceMappingURL=src_0i3--79._.css.map*/