/* ============================================================
   Cinematic hero — full-viewport video, glass chrome
   All styles prefixed .cin- to avoid collisions with site.css
   ============================================================ */

/* ----- shell ----- */
.cin-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: var(--font-sans);
  isolation: isolate;
}
.cin-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cin-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.62) 100%);
}
.cin-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

/* ----- liquid glass ----- */
.cin-glass {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1),
              0 20px 40px -20px rgba(0,0,0,0.5);
  overflow: hidden;
}
.cin-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0.10) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.10) 80%,
    rgba(255,255,255,0.30) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ----- nav ----- */
.cin-navwrap {
  padding: 20px 24px 0;
}
@media (min-width: 768px) { .cin-navwrap { padding: 24px 48px 0; } }
@media (min-width: 1024px) { .cin-navwrap { padding: 24px 64px 0; } }

.cin-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 20px;
  border-radius: 14px;
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(10,10,11,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 999px;
}
.cin-nav__brand { display: inline-flex; align-items: center; border-bottom: 0 !important; }
.cin-nav__logo {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.cin-nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 900px) { .cin-nav__links { display: flex; } }
.cin-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 0 !important;
  transition: color 150ms ease;
  white-space: nowrap;
}
.cin-nav__link:hover { color: #fff; opacity: 1; }
.cin-nav__ctas { display: flex; align-items: center; gap: 8px; }

/* ----- mobile hamburger ----- */
.cin-nav__toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin: 0;
  cursor: pointer;
  border-radius: 10px;
}
.cin-nav__toggle:hover { background: rgba(255,255,255,0.06); }
.cin-nav__toggle-icon {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 16px;
}
.cin-nav__toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 150ms ease, top 200ms ease;
}
.cin-nav__toggle-icon span:nth-child(1) { top: 2px; }
.cin-nav__toggle-icon span:nth-child(2) { top: 7px; }
.cin-nav__toggle-icon span:nth-child(3) { top: 12px; }
.cin-nav__toggle-icon.is-open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.cin-nav__toggle-icon.is-open span:nth-child(2) { opacity: 0; }
.cin-nav__toggle-icon.is-open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.cin-nav__sheet {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 40;
  background: rgba(10,10,11,0.94);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 14px 14px 18px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
}
.cin-nav__sheet-link {
  display: block;
  padding: 14px 12px;
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.cin-nav__sheet-link:last-of-type { border-bottom: 0 !important; }
.cin-nav__sheet-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.cin-nav__sheet-ctas .cin-btn { width: 100%; justify-content: center; }

@media (max-width: 760px) {
  .cin-nav { padding: 8px 8px 8px 16px; gap: 12px; }
  .cin-nav__ctas { display: none; }
  .cin-nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ----- buttons ----- */
.cin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.003em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease;
  white-space: nowrap;
}
.cin-btn--lg {
  padding: 13px 22px;
  font-size: 15px;
  border-radius: 999px;
}
.cin-btn--primary {
  background: #FF6F00;
  color: #fff;
  border-color: #FF6F00;
  box-shadow: 0 8px 24px -10px rgba(255, 111, 0, 0.45);
}
.cin-btn--primary:hover { background: #DF5F00; border-color: #DF5F00; }
.cin-btn--primary:active { transform: scale(0.98); }
.cin-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.cin-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}
.cin-btn--ghost:active { transform: scale(0.98); }

/* ----- hero body ----- */
.cin-hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 24px 72px;
}
@media (min-width: 768px) { .cin-hero__body { padding: 96px 48px 80px; } }
@media (min-width: 1024px) { .cin-hero__body { padding: 120px 64px 96px; } }

.cin-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .cin-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 48px;
  }
}

.cin-hero__left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cin-hero__right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (min-width: 1024px) { .cin-hero__right { justify-content: flex-end; } }

.cin-hero__headline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  max-width: 14ch;
}
.cin-hero__headline em,
.cin-hero__headline i { font-style: italic; color: #FF6F00; font-weight: 500; }

.cin-hero__lead {
  margin: 0 0 28px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.002em;
  text-wrap: pretty;
}
@media (min-width: 768px) { .cin-hero__lead { font-size: 18px; } }

.cin-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ----- hero proof strip ----- */
.cin-hero__proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 640px;
}
.cin-hero__proof-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
}
.cin-hero__proof-item:first-child { padding-left: 0; }
.cin-hero__proof-item:last-child { padding-right: 0; }
.cin-hero__proof-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.cin-hero__proof-num {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.028em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cin-hero__proof-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.002em;
}
@media (max-width: 720px) {
  .cin-hero__proof { flex-wrap: wrap; gap: 20px; }
  .cin-hero__proof-item { flex: 1 1 45%; padding: 0; }
  .cin-hero__proof-div { display: none; }
}

/* ----- right column ----- */

/* ----- kickoff card ----- */
.cin-kickoff__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cin-kickoff__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.cin-kickoff__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cin-kickoff__live-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #FF6F00;
  animation: cin-live-pulse 1.8s ease-in-out infinite;
}
@keyframes cin-live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,111,0,0.5); }
  50% { opacity: 0.55; box-shadow: 0 0 0 6px rgba(255,111,0,0); }
}
.cin-kickoff__live-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.cin-kickoff__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .cin-kickoff__tiles { gap: 12px; } }
.cin-kickoff__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.cin-kickoff__num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cin-kickoff__lbl {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.cin-kickoff__foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
@media (min-width: 640px) {
  .cin-kickoff__foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cin-kickoff__foot strong { font-weight: 600; color: #fff; }
.cin-kickoff__meta { color: rgba(255, 255, 255, 0.55); }

/* ----- reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  .cin-kickoff__live-dot { animation: none; }
  .cin-hero h1 * { transition: none !important; }
}
