/* Launches — ads language: amber accents, photo hero with baked dark left */

body[data-page="launch"] {
  --ads: #c9893a;
  --ads-deep: #3a2614;
  background-image: radial-gradient(900px 380px at 88% -8%, rgba(201, 137, 58, 0.08), transparent 55%);
}

.launch-hero {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: clamp(22px, 3.5vw, 32px);
  min-height: 0;
  display: grid;
  align-content: start;
  color: #fff;
  background-color: #120c08;
  background-image: url("../assets/launch-ads-people.jpg?v=v1exact");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.launch-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 137, 58, 0.22), transparent 68%);
  pointer-events: none;
}
.launch-hero .kicker,
.launch-hero h1,
.launch-hero .lead,
.launch-hero-actions { position: relative; z-index: 3; }
.launch-hero h1 { color: #fff; max-width: 18ch; margin: 0; line-height: 1.08; }
.launch-hero .lead { color: rgba(255, 236, 214, 0.82); margin: 14px 0 18px; max-width: 34rem; }
.launch-hero .kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 196, 130, 0.86);
}
.launch-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.launch-hero .btn-dark { background: #fff; color: #2a1c10; }
.launch-hero .btn-line { border-color: rgba(255, 230, 196, 0.4); color: #fff; }

body[data-page="launch"] .btn-primary {
  background: #3a2614;
  box-shadow: 0 10px 26px rgba(58, 38, 20, 0.28);
}
body[data-page="launch"] .btn-primary:hover { background: #2a1c10; }
body[data-page="launch"] .price.popular .btn-light {
  background: #fff;
  color: #2a1c10;
}

.launch-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.launch-proof article {
  border-radius: 20px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.launch-proof strong { display: block; font-size: 1.02rem; }
.launch-proof p { margin: 6px 0 0; color: var(--copy); font-size: 0.9rem; font-weight: 500; }

.launch-funnel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.launch-funnel article {
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.launch-funnel .num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ads);
  margin-bottom: 8px;
}
.launch-funnel h3 { margin: 0 0 6px; font-size: 1.02rem; }
.launch-funnel p { margin: 0; color: var(--copy); font-size: 0.88rem; font-weight: 500; }

.launch-channels {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
}
.launch-channel {
  padding: 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.launch-channel.is-ads {
  background: linear-gradient(155deg, #050505 0%, #1a120a 62%, #3a2412 100%);
  color: #fff;
  border: 0;
}
.launch-channel.is-ads p,
.launch-channel.is-ads li { color: rgba(255, 236, 214, 0.78); }
.launch-channel h3 { margin: 0 0 8px; }
.launch-channel p { margin: 0 0 10px; color: var(--copy); font-size: 0.92rem; font-weight: 500; }
.launch-channel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.launch-channel li {
  position: relative;
  padding-left: 14px;
  color: var(--copy);
  font-size: 0.88rem;
}
.launch-channel li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ads);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.launch-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.launch-plan article {
  padding: 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.launch-plan .month {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ads);
  margin-bottom: 8px;
}
.launch-plan h3 { margin: 0 0 8px; }
.launch-plan p { margin: 0; color: var(--copy); font-size: 0.9rem; font-weight: 500; }

body[data-page="launch"] .price.popular {
  background: linear-gradient(155deg, #050505 0%, #3a2412 100%);
}

@media (max-width: 980px) {
  .launch-funnel, .launch-channels, .launch-plan, .launch-proof { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .launch-funnel, .launch-channels, .launch-plan, .launch-proof { grid-template-columns: 1fr; }
  .launch-hero {
    background-size: cover;
    background-position: center;
  }
  .launch-hero h1 { max-width: 18ch; }
  .launch-hero .lead { max-width: 88%; }
  .launch-hero-actions { max-width: 100%; }
}
