/* Pitch page (GitHub Pages) — Pop Poster theme subset */

:root {
  --ink: #1a1a1a;
  --mute: #5c5652;
  --paper: #fff8e7;
  --chalk: #fffef8;
  --line: #1a1a1a;
  --coral: #ff6b4a;
  --coral-deep: #e85535;
  --sky: #4ec5f1;
  --lemon: #ffe566;
  --rose: #e85535;
  --radius: 0.85rem;
  --ink-border: 2.5px solid var(--ink);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

.page-shell {
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 50% at 0% -5%, rgba(78, 197, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(255, 229, 102, 0.35), transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 100%, rgba(255, 107, 74, 0.12), transparent 55%);
}

.page-shell--no-header {
  padding-top: 0;
}

/* About page — fit full pitch in one viewport (no scroll at 100% zoom) */
html:has(.about-page) {
  height: 100%;
  overflow: hidden;
}

.about-page {
  overflow: hidden;
  height: 100%;
}

.about-shell {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.about-main {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  padding: clamp(0.5rem, 1.8vh, 1.25rem) clamp(0.85rem, 2.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: clamp(0.4rem, 1.4vh, 1rem);
}

.about-hero {
  flex-shrink: 0;
}

.about-eyebrow {
  margin: 0 0 clamp(0.25rem, 0.8vh, 0.5rem);
  font-size: clamp(0.6rem, 1.4vh, 0.75rem);
}

.about-logo {
  margin: 0 0 clamp(0.3rem, 1vh, 0.55rem);
}

.about-logo img {
  width: clamp(2.25rem, 6.5vh, 3.75rem);
  height: clamp(2.25rem, 6.5vh, 3.75rem);
  display: block;
}

.about-title {
  margin: 0;
  font-size: clamp(1.55rem, 5.2vh, 2.75rem);
  line-height: 1.05;
  font-weight: 400;
}

.about-lead {
  margin: clamp(0.35rem, 1vh, 0.65rem) auto 0;
  max-width: 34rem;
  font-size: clamp(0.72rem, 1.9vh, 0.95rem);
  line-height: 1.35;
  text-wrap: pretty;
}

.about-flow {
  flex-shrink: 1;
  min-height: 0;
}

.about-flow-title {
  margin: 0 0 clamp(0.4rem, 1.2vh, 0.75rem);
  font-size: clamp(0.95rem, 2.4vh, 1.25rem);
}

.about-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.45rem, 1.4vh, 0.75rem);
}

@media (min-width: 640px) {
  .about-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.5rem, 1.2vw, 0.85rem);
  }
}

.about-step {
  padding-inline: 0.15rem;
}

.about-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.6rem, 3.8vh, 2rem);
  height: clamp(1.6rem, 3.8vh, 2rem);
  margin-bottom: clamp(0.25rem, 0.8vh, 0.45rem);
  border-radius: 0.45rem;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: clamp(0.7rem, 1.8vh, 0.85rem);
}

.about-step h3 {
  margin: 0 0 0.2rem;
  font-size: clamp(0.8rem, 2vh, 0.95rem);
}

.about-step p {
  margin: 0;
  font-size: clamp(0.65rem, 1.65vh, 0.8rem);
  line-height: 1.3;
}

.about-cta.cta-band {
  flex-shrink: 0;
  padding: clamp(0.65rem, 2vh, 1.1rem) clamp(0.85rem, 2.5vw, 1.5rem);
  border-width: 2.5px;
  box-shadow: 3px 3px 0 var(--ink);
  border-radius: calc(var(--radius) + 0.05rem);
}

.about-cta h2 {
  margin: 0 0 clamp(0.25rem, 0.8vh, 0.45rem);
  font-size: clamp(1rem, 2.6vh, 1.45rem);
}

.about-cta p {
  margin: 0 auto clamp(0.45rem, 1.4vh, 0.75rem);
  max-width: 28rem;
  font-size: clamp(0.68rem, 1.7vh, 0.85rem);
  line-height: 1.35;
}

.about-cta .btn-on-cta {
  padding: clamp(0.45rem, 1.2vh, 0.65rem) clamp(0.9rem, 2.5vw, 1.35rem);
  font-size: clamp(0.8rem, 2vh, 0.95rem);
}

.about-footer.site-footer {
  flex-shrink: 0;
  padding: clamp(0.35rem, 1vh, 0.55rem) 1rem;
  border-top-width: 2px;
}

.about-footer div {
  font-size: clamp(0.6rem, 1.4vh, 0.7rem);
}

@media (max-height: 700px) {
  .about-page .flow-connector {
    display: none;
  }
}

.site-footer {
  border-top: var(--ink-border);
  background: color-mix(in srgb, var(--chalk) 80%, white);
}

.flow-step {
  position: relative;
}

.flow-connector {
  display: none;
}

@media (min-width: 640px) {
  .flow-connector {
    display: block;
    position: absolute;
    top: 1.15rem;
    left: calc(100% - 0.25rem);
    width: calc(100% - 2rem);
    height: 2.5px;
    background: var(--ink);
    pointer-events: none;
  }
}

.cta-band {
  background: var(--coral);
  color: #fff;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.cta-band .btn-on-cta {
  background: var(--lemon);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  border-radius: 0.65rem;
  font-weight: 800;
}

.cta-band .btn-on-cta:hover {
  background: #fff;
}
