/* ============ /two additions — risk-reversal ticks + FAQ ============ */

/* ---- checkmarks under CTAs ---- */
.ticks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.1rem;
  margin: 1.1rem 0 0;
  padding: 0;
  font-size: .8rem;
  color: var(--muted-text);
}

.ticks li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.ticks li::before {
  content: "✓";
  font-family: var(--font-puff);
  color: var(--purple);
  font-size: .85rem;
}

.ticks-light {
  justify-content: center;
  color: rgba(255, 255, 255, .92);
}

.ticks-light li::before { color: #fff; }

.cta .ticks-light { margin-top: 1.3rem; }

/* longer CTA title: smaller than the base "it's a vibe." sizing so it stays ≤2 lines */
.cta-title { font-size: clamp(2rem, 6.5vw, 4.2rem); }

/* ---- hero email capture ---- */
/* widen the subheader so the copy column doesn't leave dead space on the right */
.hero .hero-sub { max-width: 60ch; }

.hero-form {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  max-width: 560px;
  margin-inline: 0;          /* left-align: base .cta-form centers with auto margins */
  justify-content: flex-start;
}

.hero-form input {
  flex: 1 1 260px;
  padding: .95rem 1.4rem;
  border-radius: 12px;
  border: 2px solid var(--purple-softer);
  background: #fff;
  font-family: var(--font-puff);
  font-size: .95rem;
  color: var(--purple);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.hero-form input::placeholder { color: var(--purple); opacity: .65; }

.hero-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(78, 90, 165, .15);
}

.hero-note {
  margin: .8rem 0 0;
  font-size: .8rem;
  font-style: italic;
  color: var(--muted-text);
}

/* hero ticks: horizontal row to save vertical space */
.hero-copy .ticks {
  flex-direction: row;
  flex-wrap: wrap;
  gap: .45rem 1.2rem;
  margin-top: 1.3rem;
}

.hero-copy .cta-success {
  color: var(--purple);
  font-family: var(--font-puff);
  font-size: 1.15rem;
  margin: 0;
}

@media (max-width: 480px) {
  .hero-form { max-width: none; }
  .hero-form input,
  .hero-form .btn-primary { flex: 1 1 100%; }
}

/* ---- skills marquee (bottom of hero) ---- */
.skills-strip { margin-top: clamp(2.5rem, 6vw, 4rem); }

.skills-label {
  margin: 0 0 1rem;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-text);
  text-align: center;
}

.skills-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.skills-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: skills-scroll 24s linear infinite;
}

.skills-marquee:hover .skills-track { animation-play-state: paused; }

@keyframes skills-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.skill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-puff);
  font-size: 1rem;
  color: var(--purple);
  white-space: nowrap;
}

.skill img { width: 22px; height: 22px; }

.skill-img-rounded { border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  .skills-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .skills-track .skill[aria-hidden="true"] { display: none; }
}

/* ---- step icons: time / location / vibe ---- */
.step-icon {
  flex: 0 0 auto;
  margin-left: auto;
  align-self: center;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 12px;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(78, 90, 165, .12);
}

/* ---- founder video, clean column (no photo panel) ---- */
.how-media-clean {
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.founder-kicker {
  margin: 0;
  text-align: center;
}

.founder-kicker-sub {
  margin: .15rem 0 1.4rem;
  font-size: .85rem;
  color: var(--muted-text);
  text-align: center;
}

/* explicit aspect-ratio needed — preload="none" means no intrinsic dimensions */
.founder-video-wrap {
  position: relative;
  width: min(320px, 82%);
}

.founder-video {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: #1c1d22;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(78, 90, 165, .25);
  display: block;
}

/* big centered play button over the poster */
.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 86px;
  height: 86px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(28, 32, 60, .35);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 38px rgba(28, 32, 60, .45);
}

.video-play-btn .play-button { margin-left: 8px; }


/* ---- iceberg section: copy left, glacier right ---- */
.founder-copy {
  text-align: left;
}

.founder-copy .kicker { margin-bottom: .7rem; }

.founder-copy h2 {
  max-width: 22ch;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.founder-body {
  margin: 1rem 0 0;
  max-width: 48ch;
  font-size: .95rem;
  color: #4C4C4C;
}

/* role bullets: stacked list, slightly larger than the hero ticks */
.founder-ticks {
  flex-direction: column;
  gap: .55rem;
  margin: 1.3rem 0 1.7rem;
  font-size: .9rem;
}

/* ---- faq ---- */
.faq { padding-block: clamp(2.5rem, 7vw, 5.5rem); }

.faq-inner { max-width: 720px; }

.faq h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -.01em;
  margin: 0 0 1.6rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.faq-item {
  background: #fff;
  border: 2px solid var(--purple-softer);
  border-radius: 14px;
  padding: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item[open],
.faq-item:hover {
  border-color: var(--purple);
}

.faq-item[open] { box-shadow: 0 12px 30px rgba(78, 90, 165, .12); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  font-family: var(--font-puff);
  font-size: .98rem;
  color: var(--heading);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-puff);
  font-size: 1.3rem;
  color: var(--purple);
  line-height: 1;
  transition: transform .25s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.3rem 1.1rem;
  font-size: .9rem;
  color: var(--muted-text);
}

.faq-answer p { margin: 0 0 .7rem; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  margin: 0 0 .7rem;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.faq-cta {
  margin: 1.6rem 0 0;
  font-size: .9rem;
  color: var(--muted-text);
}

.faq-cta a { color: var(--purple); }

@media (max-width: 480px) {
  .ticks { gap: .3rem .8rem; }
}
