



h2 {
  text-transform: uppercase;
  margin-top: 50px;
  letter-spacing: 0.12em;
}

p {
  font-weight: 300;
}

.signature-block {
  margin-top: 50px;
}


main {
  background: radial-gradient(1200px 600px at 65% 35%, rgba(255,230,0,.18), transparent 55%),
    radial-gradient(900px 500px at 20% 80%, rgba(0,180,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));;
}





.hero-video-wrap{
  position: relative;
  width: 100vw;
  height: 50vh;

  /* Better mobile behavior: avoid “too short” on tiny screens */
  min-height: 320px;
  max-height: 720px;

  overflow: hidden;
}

/* Make the video fill the box without distortion */
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* key: crops instead of squishing */
  object-position: center;      /* adjust if your subject is off-center */
  transform: translateZ(0);     /* helps on some GPUs */
}

/* Subtle cinematic readability layer */
.hero-video-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Optional content styling */
.hero-video-content{
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 3vw, 36px);
  color: white;
}

/* If you truly want edge-to-edge on mobile (no rounding) */
@media (max-width: 768px){
  .hero-video-wrap{ border-radius: 0; }
}













/* Manifesto typography system */
.manifesto {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) clamp(18px, 3vw, 28px);
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  letter-spacing: 0.2px;
  font-size: 16.5px;
}

.manifesto p {
  margin: 0 0 14px 0;
}

.manifesto .lead {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}

.manifesto .lead strong {
  color: rgba(255,255,255,0.98);
}

/* Section headers like nav labels */
.manifesto h2 {
  margin: 34px 0 14px;
/*  font-size: 13px;*/
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  display: flex;
  align-items: center;
  gap: 12px;
}

.manifesto h2::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.02)
  );
}

/* Punchlines that land like a title card */
.manifesto .punch {
  margin: 18px 0 18px;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.96);
  font-weight: 650;
}

.manifesto .punch .whisper {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Soft-highlight important phrases like “UI focus state” */
.manifesto mark {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.00),
    rgba(255,255,255,0.10)
  );
  color: rgba(255,255,255,0.95);
  padding: 0.05em 0.28em;
  border-radius: 8px;
}

/* Inline “glow underline” for key claims */
.manifesto .u {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  background-image: linear-gradient(90deg,
    rgba(255,255,255,0.24),
    rgba(255,255,255,0.04)
  );
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
  padding-bottom: 2px;
}

/* Pull-quote block: looks like a premium UI card */
.manifesto .quote {
  margin: 22px 0;
  padding: 18px 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: radial-gradient(120% 160% at 0% 0%,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  box-shadow: 0 10px 34px rgba(0,0,0,0.35);
  position: relative;
}

.manifesto .quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.02)
  );
  border-radius: 2px;
  opacity: 0.8;
}

.manifesto .quote p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.7;
}

.manifesto .quote strong {
  color: rgba(255,255,255,0.98);
}

/* Two-column “steps” for Path */
.manifesto .steps {
  margin: 18px 0 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 860px) {
  .manifesto .steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.manifesto .step {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 14px 14px 14px 14px;
}

.manifesto .step .label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.manifesto .step .big {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}

/* Ending signature */
.signature-block.manifesto-sig {
  margin-top: 26px;
  padding-top: 18px;
/*  border-top: 1px solid rgba(255,255,255,0.10);*/
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Optional: make paragraphs breathe slightly more on mobile */
@media (max-width: 520px) {
  .manifesto { font-size: 16px; }
  .manifesto p { margin-bottom: 13px; }
}