/* ==========================================================================
   Launch Labs — "Everything handled"
   Deliberately NOT a services/pricing grid AND not a three-part
   process/framework: three spacious typographic columns — Strategy &
   messaging / Design & content / Build & launch — read as what we deliver,
   separated by a single hairline each (no card chrome, no boxes, no
   numerals, no checkmarks), with a small standalone proof line beneath. A
   business owner should be able to scan it and immediately know what they
   get.

   Black surface, white type, Launch red (#D92632) for item markers only.
   Plus Jakarta Sans (display) + Hanken Grotesk (copy). Namespaced .offer-alt.

   To remove: delete this file, js/offer-alt.js, and the <section
   class="offer-alt"> block + their <link>/<script> lines in index.html.
   ========================================================================== */

.offer-alt {
  --ink:       #FFFFFF;
  --ink-muted: rgba(255, 255, 255, 0.68);
  --ink-soft:  rgba(255, 255, 255, 0.42);
  --hairline:  rgba(255, 255, 255, 0.12);
  --contrast:  #D92632;

  background: #010202;
  color: var(--ink);
  padding: clamp(5rem, 11vw, 8.5rem) clamp(1.5rem, 5vw, 4rem);
}

.offer-alt__inner {
  max-width: 84rem;
  margin: 0 auto;
}

/* ---- Intro ---------------------------------------------------------------- */
.offer-alt__intro {
  max-width: 40rem;
  opacity: 0;
  transform: translateY(14px);
}

.offer-alt.is-visible .offer-alt__intro {
  animation: offer-alt-rise 0.75s var(--ease) forwards;
}

.offer-alt__eyebrow {
  margin: 0 0 clamp(0.85rem, 1.5vw, 1.15rem);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--contrast);
}

.offer-alt__heading {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 3.7vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* ---- Columns ---------------------------------------------------------------
   Three plain typographic columns, each separated by a single hairline
   rule (border, not a box) so the whole row reads as one wide, deliberate
   composition rather than three repeated cards. Generous top margin gives
   the row real air above the intro. */
.offer-alt__columns {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}

.offer-alt__col {
  padding-top: 2.8125rem; /* ~45px: divider -> heading */
  border-top: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(20px);
}

.offer-alt.is-visible .offer-alt__col {
  animation: offer-alt-rise 0.75s var(--ease) forwards;
}

.offer-alt.is-visible .offer-alt__col:nth-child(1) { animation-delay: 0.15s; }
.offer-alt.is-visible .offer-alt__col:nth-child(2) { animation-delay: 0.26s; }
.offer-alt.is-visible .offer-alt__col:nth-child(3) { animation-delay: 0.37s; }

.offer-alt__col-title {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 1.9vw, 1.75rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.offer-alt__col-lead {
  margin: 0.8125rem 0 0; /* ~13px: heading -> description, kept close */
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-muted);
}

.offer-alt__col-list {
  list-style: none;
  margin: 2.5rem 0 0; /* ~40px: description -> first bullet */
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3125rem; /* ~21px: between bullets */
}

.offer-alt__col-list li {
  position: relative;
  padding-left: 1.2rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.4;
  color: var(--ink-soft);
}

/* A small red dash marker rather than a checkmark — this section already has
   its own visual identity distinct from .offer's checklist above it. */
.offer-alt__col-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.65rem;
  height: 1.5px;
  background: var(--contrast);
}

/* ---- Proof point ------------------------------------------------------------
   A small, standalone line beneath the columns — its own hairline above it
   sets it apart as a closing note, not a fourth column. */
.offer-alt__proof {
  margin: 4.375rem 0 0; /* ~70px: final bullet -> bottom divider */
  padding-top: 2.8125rem; /* ~45px: divider -> proof line */
  border-top: 1px solid var(--hairline);
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--ink-muted);
  opacity: 0;
  transform: translateY(14px);
}

.offer-alt.is-visible .offer-alt__proof {
  animation: offer-alt-rise 0.75s var(--ease) forwards;
  animation-delay: 0.5s;
}

.offer-alt__proof-mark {
  display: inline-block;
  margin-right: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--contrast);
  vertical-align: middle;
}

/* ---- Motion ---------------------------------------------------------------- */
@keyframes offer-alt-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .offer-alt__intro,
  .offer-alt__col,
  .offer-alt__proof { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---- Responsive -------------------------------------------------------------
   Tablet: two columns, third wraps and spans both (still no boxes). Mobile:
   a single stacked column, each still marked off with its own hairline. */
@media (max-width: 60rem) {
  .offer-alt__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(3.2rem, 6.4vw, 4.5rem);
  }
  .offer-alt__col:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 36rem) {
  .offer-alt__columns {
    grid-template-columns: 1fr;
    row-gap: clamp(2.88rem, 10.24vw, 3.84rem);
  }
  .offer-alt__col:nth-child(3) { grid-column: auto; }
}
