@font-face {
  font-family: 'Swiza';
  src: url('fonts/swiza-light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'HelveticaNowDisplay';
  src: url('fonts/helvetica-now-display.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --bg:      #000;
  --text:    #f8f8f8;
  --muted:   #a0a0a0;
  --dim:     #6e6e6e;
  --border:  rgba(255,255,255,0.08);
  --accent:  #E3601A;
  --font-display: 'Swiza', 'Outfit', -apple-system, sans-serif;
  --font-body:    'HelveticaNowDisplay', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
html { font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === BRAND VIDEO BACKGROUND === */
.brand-bg {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.95);
  pointer-events: none;
}
.bg-darken {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.45) 100%);
}

/* === NAV === */
nav {
  position: relative; z-index: 10;
  padding: 1.6rem 2.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
nav .logo img { height: 22px; width: auto; display: block; }
.pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border); border-radius: 999px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.6s ease-in-out infinite;
}
.pill .who { color: var(--text); }
@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.25); }
}

/* === MAIN === */
main {
  position: relative; z-index: 5;
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 3rem 2.4rem 2rem;
}
.stage { max-width: 1100px; margin: 0 auto; width: 100%; }
.stage.center { text-align: center; }

/* === HERO === */
.hero { margin-bottom: 2.5rem; text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease 0.2s both;
}
.eyebrow .sep { color: var(--dim); margin: 0 0.7rem; }

h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.95; letter-spacing: -0.03em;
  color: var(--text); margin: 0 0 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5),
               0 0 60px color-mix(in oklab, var(--accent) 15%, transparent);
  animation: fadeUp 0.9s cubic-bezier(.2,.7,.2,1) 0.3s both;
}
h1 .dot { color: var(--accent); }

.sub-line {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text); line-height: 1.5;
  max-width: 560px; margin: 0 auto;
  animation: fadeUp 0.9s ease 0.5s both;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === CARD === */
.card {
  max-width: 540px; margin: 0 auto; text-align: left;
  padding: 2rem 2.2rem 1.8rem;
  background: rgba(8,8,8,0.65);
  border: 1px solid var(--border); border-radius: 14px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  animation: fadeUp 1s ease 0.7s both;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.card .mini-line {
  display: block; height: 2px; width: 36px;
  background: var(--accent); border: 0; margin: 0 0 0.9rem; border-radius: 1px;
}
.card-label {
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.8rem;
}
.card-body {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.55; margin-bottom: 1.4rem; max-width: 420px;
}

/* === FORM === */
.form-row { display: flex; gap: .5rem; flex-wrap: wrap; }
input[type=email], input[type=text], input[type=password] {
  flex: 1; min-width: 220px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.95rem;
  background: rgba(0,0,0,0.45); color: var(--text);
  border: 1px solid var(--border); border-radius: 10px;
  outline: none; transition: border-color .2s, background .2s;
}
input[type=email]:focus, input[type=text]:focus, input[type=password]:focus {
  border-color: var(--accent);
  background: rgba(0,0,0,0.65);
}
.error {
  color: #f6a87a; font-size: 0.85rem; margin: 0.6rem 0 0;
}

/* === BUTTON === */
.btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  position: relative; isolation: isolate;
  padding: 0.85rem 1.4rem 0.85rem 1.7rem;
  border: 1.5px solid var(--text); border-radius: 999px;
  background: transparent; color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; overflow: hidden;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn .arrow { display: inline-block; transition: transform 0.25s ease; font-size: 1rem; }
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent); transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
}
.btn:hover { color: #000; border-color: var(--accent); }
.btn:hover::before { transform: translateX(0); }
.btn:hover .arrow { transform: translateX(5px); }

/* === PLAYER === */
.player-wrap {
  max-width: 1100px; margin: 0 auto;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: fadeUp 0.8s ease both;
}
video.player {
  display: block; width: 100%; height: auto; background: #000;
}
.player-meta {
  padding: 0.9rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 0.78rem;
  color: var(--muted); letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
}

/* === FOOTER === */
footer {
  position: relative; z-index: 5;
  padding: 1.6rem 2.4rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
footer .tag {
  font-family: var(--font-display); font-weight: 300;
  font-size: 0.9rem; color: var(--muted);
}
footer .url {
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.2rem; }
  main { padding: 1.5rem 1.2rem; }
  .hero { margin-bottom: 1.8rem; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.22em; margin-bottom: 1.2rem; }
  .card { padding: 1.5rem 1.4rem; }
  footer { padding: 1.2rem; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .pill { font-size: 0.62rem; padding: 0.4rem 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-bg { display: none; }
  body { background: #050505; }
  h1, .sub-line, .card, .eyebrow, .player-wrap { animation: none; }
  .pill .dot { animation: none; }
}
