@property --gradient-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

:root {
  --cream: #f4f2ea;
  --ink: #050505;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.16);
  --yellow: #ffed00;
  --yellow-soft: rgba(255, 237, 0, .10);
  --yellow-line: rgba(255, 237, 0, .30);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Helvetica, Arial, sans-serif;
  background: var(--ink);
  color: white;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  pointer-events: none;
}
.promo-strip {
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #050505;
  background: var(--yellow);
  pointer-events: auto;
}
.navbar {
  height: 58px;
  width: min(calc(100% - 32px), 1180px);
  margin: 18px auto 0;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--yellow-line);
  border-radius: 999px;
  background: rgba(8, 8, 8, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
  pointer-events: auto;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.site-header.scrolled .navbar {
  background: rgba(5, 5, 5, .88);
  border-color: rgba(255, 237, 0, .48);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.04em;
  font-size: 16px;
}
.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(255,237,0,.8);
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}
.nav-links a,
.login-link { color: rgba(255,255,255,.78); transition: color .2s ease; }
.nav-links a:hover,
.login-link:hover { color: var(--yellow); }
.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--yellow-line);
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--yellow);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.icon-btn:hover { background: rgba(255, 237, 0, .18); }
.icon-btn svg { width: 18px; fill: currentColor; }
.user-btn svg { width: 19px; }
.cta-link,
.primary-btn {
  background: var(--yellow);
  color: black;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(255,237,0,.26);
}

.hero-scroll {
  position: relative;
  height: 400vh;
  background: #050505;
}
.hero-backdrop {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-ball.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: grayscale(100%) contrast(1.1) brightness(.58);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,237,0,.13), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.36) 38%, rgba(0,0,0,.60) 72%, #050505 100%);
}
.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  text-align: center;
  will-change: opacity, transform;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--yellow);
}
h1, h2 {
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.085em;
  line-height: .86;
  font-weight: 400;
}
h1 { font-size: clamp(82px, 11.2vw, 170px); }
h2 { font-size: clamp(52px, 8vw, 108px); }
.hero-copy {
  max-width: 600px;
  margin: 22px auto 0;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.38;
  color: var(--muted);
}
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.secondary-btn {
  border: 1px solid var(--yellow-line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255,237,0,.08);
}

.video-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 4;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12vh;
  pointer-events: none;
  overflow: visible;
}
.video-shell {
  width: 56%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #FFE135;
  box-shadow: 0 0 40px rgba(255,225,53,.18), 0 36px 130px rgba(0,0,0,.66);
  background: #000;
  pointer-events: auto;
  will-change: width, height, border-radius;
}
.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(.74);
}
/* play-pill removed — video loops continuously */
.content-block {
  position: relative;
  z-index: 6;
  background: var(--cream);
  color: #050505;
  padding: 120px 24px 150px;
}
.steps-header {
  max-width: 1180px;
  margin: 0 auto;
}
.steps-intro {
  max-width: 720px;
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(0,0,0,.68);
}
/* === Steps: Sticky scroll card stack (Veo two-column layout) === */
#opportunities {
  background: #050505;
  color: white;
  position: relative;
  overflow: visible;
  padding: 0;
  margin: 0;
  width: 100%;
}

#opportunities .steps-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 72px;
}

#opportunities .steps-header h2 {
  color: white;
}

#opportunities .steps-intro {
  color: rgba(255,255,255,.52);
  max-width: 680px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.45;
}

#stepsContainer {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 160px;
}

.step-row {
  position: sticky;
  top: 100px;
  width: 100%;
  padding-bottom: 20px;
  will-change: transform;
}

.step-row[data-index="0"] { top: 100px; }
.step-row[data-index="1"] { top: 112px; }
.step-row[data-index="2"] { top: 124px; }

.step-number {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 237, 0, 0.6);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 4px;
}

.step-card {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #111;
  transform-origin: top center;
  box-shadow: 0 32px 100px rgba(0,0,0,0.6);
}

.step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

#stepsContainer::after {
  content: '';
  display: block;
  height: 80px;
}

@keyframes gradient-rotate {
  from { --gradient-angle: 0deg; }
  to   { --gradient-angle: 360deg; }
}

/* ── Shared section utilities ── */
.section-center {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.section-title-sm {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  margin: 0;
  color: #050505;
  text-transform: none;
}
.section-subtitle {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0,0,0,.62);
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  background: transparent;
  color: #050505;
  cursor: pointer;
  transition: border-color .2s;
}
.outline-btn:hover { border-color: rgba(0,0,0,.42); }

/* ── Section: Sticky-stacking tool cards ── */
#toolsStack {
  position: relative;
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0 40px 0;
}
/* Trim the cream section's trailing padding so the last tool card sits close
   to the highlights section; that section's 120px top padding is the single,
   consistent gap between the two. */
#tools {
  padding-bottom: 24px;
}
.step-row--tool {
  /* Shorter than the viewport so the next card's top edge peeks (~12-15%)
     at the bottom while the current card is settled — signals more to scroll. */
  min-height: 76vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 0;
}
/* Last card has no next card to peek; trim its trailing scroll so it flows
   straight into the highlights section instead of leaving a cream dead zone. */
.step-row--tool:last-child {
  min-height: 52vh;
}
.step-row--tool[data-index="0"] { top: 8%; }
.step-row--tool[data-index="1"] { top: 10%; }
.step-row--tool[data-index="2"] { top: 12%; }
.step-row--tool[data-index="3"] { top: 14%; }
.step-row--tool[data-index="4"] { top: 16%; }
.step-card--tool {
  width: 700px;
  max-width: 100%;
  height: 400px;
}
.step-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.step-card__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.78) 100%);
  pointer-events: none;
}
.step-card__text {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  padding: 32px 32px 28px;
  text-align: right;
  max-width: 420px;
}
.step-card__tag {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.65);
}
.step-card__heading {
  margin: 10px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: white;
}
.step-card__link {
  display: inline-block;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: white;
}
.step-card__link:hover { color: var(--yellow); }

/* ── Section: Player Highlights (hero + featured + reel + stats) ── */
.ph-section {
  position: relative;
  z-index: 6;
  background: #050505;
  padding: 110px 0 90px;
  overflow: hidden;
}
.ph-eyebrow {
  margin: 0 0 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #FFED00;
}
.ph-hero {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.ph-title {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: .94;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: white;
}
.ph-title em { color: #FFED00; font-style: italic; }
.ph-sub {
  margin: 22px 0 0;
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}
.ph-ctas { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.ph-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFED00;
  color: #050505;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 16px;
  border-radius: 8px;
  transition: transform .15s, box-shadow .15s;
}
.ph-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,237,0,.18); }
.ph-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  transition: border-color .2s, color .2s;
}
.ph-btn-secondary:hover { border-color: rgba(255,255,255,.45); color: white; }
.ph-trusted-label {
  margin: 34px 0 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ph-trusted-logos { display: flex; align-items: center; gap: 20px; }
.ph-trusted-logos img {
  height: 30px;
  width: auto;
  filter: grayscale(1) brightness(1.7);
  opacity: .75;
  transition: opacity .2s, filter .2s;
}
.ph-trusted-logos img:hover { opacity: 1; filter: grayscale(0) brightness(1); }

/* featured card */
.ph-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  gap: 28px;
  background: linear-gradient(150deg, #151515, #090909);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.ph-featured__chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 12px;
}
.ph-featured__photowrap {
  border-radius: 14px;
  overflow: hidden;
  min-height: 340px;
}
.ph-featured__photowrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(2.4);
  transform-origin: 100% 10%;
  display: block;
}
.ph-featured__info { font-family: 'JetBrains Mono', monospace; }
.ph-featured__namerow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.ph-featured__name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  color: white;
}
.ph-verified {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFED00;
  color: #050505;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.ph-featured__pos {
  margin: 8px 0 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.ph-featured__rating {
  flex-shrink: 0;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
}
.ph-featured__rating strong { display: block; font-size: 18px; color: #FFED00; }
.ph-featured__rating span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.ph-featured__facts {
  margin-top: 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.ph-featured__facts strong { display: block; font-size: 14px; color: #FFED00; }
.ph-featured__facts span {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.ph-label {
  margin: 18px 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FFED00;
}
.ph-featured__stats { display: flex; flex-wrap: wrap; }
.ph-featured__stats div { padding: 0 14px; border-left: 1px solid rgba(255,255,255,.09); }
.ph-featured__stats div:first-child { padding-left: 0; border-left: none; }
.ph-featured__stats strong { display: block; font-size: 20px; font-weight: 700; color: white; }
.ph-featured__stats span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.ph-featured__skillsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ph-featured__skills { display: flex; flex-wrap: wrap; gap: 6px; }
.ph-featured__skills span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px;
  padding: 6px 9px;
}
.ph-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFED00;
  color: #050505;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 7px;
  transition: transform .15s;
}
.ph-featured__cta:hover { transform: translateY(-2px); }

/* floating cards on edges */
.ph-float {
  position: absolute;
  z-index: 1;
  width: 170px;
  background: linear-gradient(160deg, #161616, #0a0a0a);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  font-family: 'JetBrains Mono', monospace;
}
.ph-float--l1 { left: -34px; top: 110px;   transform: rotate(-6deg); }
.ph-float--l2 { left: -20px; top: 400px;   transform: rotate(4deg); }
.ph-float--r1 { right: -34px; top: 90px;   transform: rotate(6deg); }
.ph-float--r2 { right: -22px; top: 360px;  transform: rotate(-4deg); }
.ph-float--r3 { right: -30px; top: 620px;  transform: rotate(5deg); }
.ph-float__imgwrap {
  height: 120px;
  border-radius: 9px;
  overflow: hidden;
  background: #111;
}
.ph-float__imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(2.3);
  transform-origin: 78% 16%;
  display: block;
}
.ph-float__name {
  margin: 10px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: white;
}
.ph-float__meta {
  margin: 4px 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ph-float__meta span { color: #FFED00; font-weight: 700; }

/* rising talents reel */
.ph-reel {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 56px auto 0;
  padding: 26px 28px 22px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
}
.ph-reel { margin-left: 40px; margin-right: 40px; }
@media (min-width: 1360px) { .ph-reel { margin-left: auto; margin-right: auto; } }
.ph-reel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.ph-reel__kicker {
  margin: 0 0 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #FFED00;
}
.ph-reel__title {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .01em;
  text-transform: uppercase;
  color: white;
}
.ph-reel__arrows { display: flex; gap: 8px; }
.ph-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s, border-color .2s;
}
.ph-arrow:hover { background: #FFED00; color: #050505; border-color: #FFED00; }
.ph-reel__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ph-reel__track::-webkit-scrollbar { display: none; }
.ph-clip {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  gap: 14px;
  align-items: center;
  background: #101010;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  font-family: 'JetBrains Mono', monospace;
}
.ph-clip:hover { border-color: rgba(255,237,0,.4); transform: translateY(-2px); }
.ph-clip__thumb {
  position: relative;
  flex: 0 0 120px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  background: #151515;
}
.ph-clip__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(2.3);
  transform-origin: 78% 16%;
  display: block;
}
.ph-clip__play {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.75);
  display: grid;
  place-items: center;
}
.ph-clip__duration {
  position: absolute;
  left: 36px;
  bottom: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.ph-clip__meta { min-width: 0; }
.ph-clip__name {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: white;
}
.ph-clip__sub {
  margin: 3px 0 0;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ph-clip__rating { margin: 6px 0 0; font-size: 11px; font-weight: 700; color: #FFED00; }
.ph-clip--all {
  flex: 0 0 150px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-style: dashed;
  background: transparent;
  text-align: center;
}
.ph-clip--all span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.ph-clip--all:hover span { color: #FFED00; }

@media (max-width: 1280px) { .ph-float { display: none; } }
@media (max-width: 980px) {
  .ph-hero { grid-template-columns: 1fr; gap: 40px; }
  .ph-featured { grid-template-columns: 1fr; }
  .ph-featured__photowrap { min-height: 300px; max-height: 380px; }
}
@media (max-width: 720px) {
  .ph-section { padding: 80px 0 60px; }
  .ph-hero { padding: 0 20px; }
  .ph-reel { margin-left: 20px; margin-right: 20px; padding: 20px 16px; }
}

/* ── Search button ghost style ── */
.search-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s;
}
.search-btn:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* === Get started CTA: full-bleed dark pitch photo === */
.get-started {
  position: relative;
  z-index: 6;
  background: #050505 url('assets/get-started-pitch.webp') center / cover no-repeat;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.get-started__inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}
.get-started__heading {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 0.9;
  text-transform: uppercase;
  color: white;
}
.get-started__btn {
  display: inline-block;
  margin-top: 44px;
  background: var(--cream);
  color: var(--ink);
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 999px;
  transition: transform .15s, background .2s;
}
.get-started__btn:hover { background: white; transform: translateY(-2px); }
@media (max-width: 720px) {
  .get-started { min-height: 480px; }
  .get-started__inner { padding: 80px 20px; }
  .get-started__btn { margin-top: 32px; }
}

/* === Footer: three-column links on cream === */
.site-footer {
  position: relative;
  z-index: 6;
  background: var(--cream);
  color: var(--ink);
  font-family: 'General Sans', sans-serif;
  padding: 96px 24px 0;
}
.site-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer__heading {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__list li { margin-bottom: 18px; }
.site-footer__list a {
  font-size: 18px;
  font-weight: 400;
  color: rgba(0,0,0,.72);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.site-footer__list a:hover {
  color: var(--ink);
  border-bottom-color: var(--yellow);
}
.site-footer__bottom {
  max-width: 1180px;
  margin: 72px auto 0;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(0,0,0,.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(0,0,0,.6);
}
.site-footer__bottom a {
  color: rgba(0,0,0,.6);
  transition: color .2s;
}
.site-footer__bottom a:hover { color: var(--ink); }
.site-footer__sep { color: rgba(0,0,0,.25); }
.primary-btn--lg {
  display: inline-block;
  margin-top: 36px;
  padding: 18px 36px;
  font-size: 18px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .login-link { display: none; }
  .hero-content { top: 45%; }
  h1 { font-size: clamp(64px, 17vw, 118px); }
  .video-shell { width: 88%; height: 220px; border-radius: 16px; }
  .video-sticky-wrap { padding-top: 8vh; }
  #stepsContainer {
    padding: 0 20px 100px;
  }
  .step-card {
    height: 280px;
    border-radius: 16px;
  }
  #toolsStack {
    padding: 0 20px 0;
  }
  .step-row--tool {
    min-height: 70vh;
  }
  .step-card--tool {
    width: 100%;
    height: 320px;
  }
  .step-card__text {
    padding: 24px 24px 20px;
    max-width: none;
  }
  .site-footer { padding: 64px 20px 0; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 44px; }
  .site-footer__bottom { margin-top: 56px; flex-wrap: wrap; row-gap: 8px; }
}

/* ════════════════════════════
   SIGN UP PAGE (beta.html)
════════════════════════════ */

.signup-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 40px;
}

.signup-visual__photo {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* ── Form panel ── */
.signup-panel {
  position: relative;
  z-index: 2;
  flex: 0 0 30%;
  border-radius: 24px;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  padding: 40px 44px 44px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.signup-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
}
.signup-logo__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  display: block;
  flex-shrink: 0;
}

.signup-panel__body {
  margin-top: auto;
}

.signup-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: none;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
}
.signup-sub {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  margin: 0 0 28px;
  max-width: 320px;
}

.signup-field { margin-bottom: 14px; }
.signup-input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}
.signup-input::placeholder { color: rgba(255,255,255,.35); }
.signup-input:focus { border-color: var(--yellow); background: rgba(255,255,255,.08); }

.signup-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 4px 0 24px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.signup-checkbox-row input[type="checkbox"] { display: none; }
.signup-checkbox {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  background: transparent;
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s;
}
.signup-checkbox-row input:checked + .signup-checkbox {
  background: var(--yellow);
  border-color: var(--yellow);
}
.signup-checkbox::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity .15s;
}
.signup-checkbox-row input:checked + .signup-checkbox::after { opacity: 1; }

.signup-submit {
  width: 100%;
  background: #fff;
  color: #050505;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-bottom: 20px;
}
.signup-submit:hover { background: #f0f0f0; transform: translateY(-1px); }
.signup-submit:active { transform: translateY(0); }

.signup-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(57,255,20,.07);
  border: 1px solid rgba(57,255,20,.25);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.signup-success__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: #39FF14;
  margin: 0 0 4px;
}
.signup-success__sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin: 0;
}

.signup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.signup-divider::before,
.signup-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
}
.signup-divider span {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}

.signup-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.signup-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 11px 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.signup-social:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); }
.signup-social svg { width: 16px; height: 16px; flex-shrink: 0; }

.signup-footer {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.signup-link { color: var(--yellow); font-weight: 700; }
.signup-link:hover { text-decoration: underline; }

/* ── Visual / glass panel ── */
.signup-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  overflow: hidden;
}

/* Switzer replaces every font on this page — headings, body copy, labels,
   buttons and links all fall back to it regardless of what each component
   rule above set individually. */
body.signup-page,
body.signup-page * {
  font-family: 'Switzer', sans-serif;
}

/* ── Sign up responsive ── */
@media (max-width: 860px) {
  .signup-page { flex-direction: column; padding: 20px; gap: 16px; }
  .signup-panel { flex: none; width: 100%; padding: 32px 24px; }
  .signup-visual { min-height: 280px; }
}
