/* Core fallback styles. Site child themes may override/extend these classes. */
.pv-launch-page { --pv-wrap: min(100% - clamp(32px, 6vw, 96px), 1180px); }
.pv-launch-wrap { width: var(--pv-wrap); margin-inline: auto; }
.pv-launch-nav__inner { width: var(--pv-wrap); margin-inline: auto; }
.pv-launch-cta { cursor: pointer; }
.pv-launch-page .hero-actions .pv-launch-cta + .pv-launch-cta { margin-inline-start: 0; }
.pv-launch-ecosystem { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.pv-ecosystem-card { text-decoration: none; display: block; }
.pv-ecosystem-card.is-current { border-color: color-mix(in srgb, var(--launch-accent, #38bdf8), white 20%); box-shadow: 0 22px 90px rgba(56, 189, 248, .14); }
.pv-ecosystem-card .microcopy { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.1); }
.pv-launch-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .9rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.25);
  color: color-mix(in srgb, var(--launch-accent, #38bdf8) 85%, white 15%);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  width: fit-content;
  max-width: 100%;
}
.pv-launch-trust-badge svg { flex-shrink: 0; }

.pv-section-checklist { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.pv-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem 1.25rem;
  counter-reset: pv-checklist-counter;
}
.pv-checklist__item {
  display: flex;
  gap: .85rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  align-items: flex-start;
  counter-increment: pv-checklist-counter;
}
.pv-checklist__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--launch-accent, #f59e0b) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--launch-accent, #f59e0b) 50%, transparent);
  color: var(--launch-accent, #f59e0b);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
}
.pv-checklist__title { margin: 0 0 .3rem; font-size: 1.02rem; font-weight: 800; line-height: 1.25; }
.pv-checklist__body { margin: 0; color: var(--muted, #a7b0c2); font-size: .9rem; line-height: 1.45; }
@media (max-width: 767px) {
  .pv-checklist { grid-template-columns: 1fr; gap: .65rem; }
}

.pv-section-evidence-packet { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.pv-evidence-packet {
  border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8) 30%, transparent);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
.pv-evidence-packet::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--launch-accent, #38bdf8), transparent);
}
.pv-evidence-packet[aria-busy="true"] { opacity: .85; }
.pv-evidence-packet[aria-busy="true"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  animation: pv-evp-shimmer 1.4s linear infinite;
}
@keyframes pv-evp-shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.pv-evidence-packet__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pv-evidence-packet__badge {
  font: 800 .68rem/1.2 ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--launch-accent, #38bdf8) 18%, transparent);
  color: var(--launch-accent, #38bdf8);
  border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8) 40%, transparent);
}
.pv-evidence-packet__target {
  font-weight: 700;
  font-size: .95rem;
  color: #f1f5f9;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-evidence-packet__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem 1.1rem;
  margin: 0 0 1rem;
}
.pv-evidence-packet__grid > div { display: flex; flex-direction: column; gap: .15rem; }
.pv-evidence-packet__grid dt {
  font: 700 .65rem/1.2 ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #93a4bd;
}
.pv-evidence-packet__grid dd {
  margin: 0;
  font-size: .9rem;
  color: #e2e8f0;
  line-height: 1.4;
  word-break: break-word;
}
.pv-evidence-packet__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  color: #93a4bd;
  flex-wrap: wrap;
}
.pv-evidence-packet__link {
  color: var(--launch-accent, #38bdf8);
  text-decoration: none;
  font-weight: 800;
}
.pv-evidence-packet__link:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .pv-evidence-packet__grid { grid-template-columns: 1fr; }
}

.pv-section-magic-demo { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.pv-magic-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  max-width: 920px;
  margin: 1.5rem auto 0;
}
.pv-magic-demo__panel {
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
}
.pv-magic-demo__panel--a { border-color: rgba(255,255,255,.15); }
.pv-magic-demo__panel--b { border-color: color-mix(in srgb, var(--launch-accent, #38bdf8) 35%, transparent); }
.pv-magic-demo__label {
  display: inline-block;
  font: 800 .65rem/1.2 ui-monospace, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .5rem;
  border-radius: 6px;
  margin-bottom: .8rem;
}
.pv-magic-demo__panel--a .pv-magic-demo__label { background: rgba(255,255,255,.08); color: #cfd8e3; }
.pv-magic-demo__panel--b .pv-magic-demo__label { background: color-mix(in srgb, var(--launch-accent, #38bdf8) 18%, transparent); color: var(--launch-accent, #38bdf8); }
.pv-magic-demo__rows { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.pv-magic-demo__rows li { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .35rem 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.pv-magic-demo__rows li:last-child { border-bottom: none; }
.pv-magic-demo__row-label { font-size: .75rem; color: #93a4bd; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.pv-magic-demo__row-value { font-size: .92rem; font-weight: 800; }
.pv-magic-demo__row-value[data-state="off"] { color: #8b95a3; }
.pv-magic-demo__row-value[data-state="on"] { color: color-mix(in srgb, var(--launch-accent, #38bdf8) 80%, white 20%); }
.pv-magic-demo__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: color-mix(in srgb, var(--launch-accent, #38bdf8) 70%, white 30%);
  font-weight: 900;
  align-self: center;
  animation: pv-magic-pulse 3s ease-in-out infinite;
}
@keyframes pv-magic-pulse {
  0%, 100% { transform: translateX(0); opacity: .6; }
  50% { transform: translateX(4px); opacity: 1; }
}
@media (max-width: 720px) {
  .pv-magic-demo { grid-template-columns: 1fr; gap: .75rem; }
  .pv-magic-demo__arrow { transform: rotate(90deg); animation: pv-magic-pulse-down 3s ease-in-out infinite; }
  @keyframes pv-magic-pulse-down {
    0%, 100% { transform: rotate(90deg) translateX(0); opacity: .6; }
    50% { transform: rotate(90deg) translateX(4px); opacity: 1; }
  }
}

.pv-section-who-for { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem); }

.pv-launch-page .hero-positioning {
  margin: .35rem 0 .9rem;
  font-size: .92rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: color-mix(in srgb, var(--launch-accent, #38bdf8) 80%, white 20%);
  max-width: 56ch;
  letter-spacing: -.005em;
}
.pv-who-for__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 1.5rem auto 0;
}
.pv-who-for__for,
.pv-who-for__not {
  padding: 1.25rem 1.4rem;
  border-radius: 16px;
}
.pv-who-for__for {
  background: color-mix(in srgb, var(--launch-accent, #38bdf8) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8) 30%, transparent);
}
.pv-who-for__not {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
}
.pv-who-for__for h3 { color: var(--launch-accent, #38bdf8); }
.pv-who-for__not h3 { color: var(--muted, #a7b0c2); }
.pv-who-for__grid h3 {
  margin: 0 0 .7rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.pv-who-for__grid ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: .9rem;
  line-height: 1.55;
}
.pv-who-for__grid li + li { margin-top: .35rem; }
@media (max-width: 720px) {
  .pv-who-for__grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) { .pv-launch-page .hero-actions { align-items: stretch; } .pv-launch-page .hero-actions .btn { width: 100%; } }
.pv-scarcity-panel { position: relative; }
.pv-scarcity-metrics { display: grid; grid-template-columns: 1fr; gap: .85rem; margin-top: clamp(1.2rem, 3vw, 2rem); }
.pv-scarcity-metric { padding: clamp(1rem, 2.5vw, 1.5rem); border-radius: var(--radius, 24px); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.055); }
.pv-scarcity-value { display: block; font-size: clamp(2rem, 6vw, 4.75rem); line-height: .92; letter-spacing: -.07em; font-weight: 950; color: var(--launch-accent, currentColor); }
.pv-scarcity-label { display: block; margin-top: .45rem; color: var(--muted, #a7b0c2); font-size: var(--small, .9rem); text-transform: uppercase; letter-spacing: .14em; }
@media (min-width: 768px) { .pv-scarcity-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* Responsive safety for long technical section copy. */
.pv-launch-page .step { grid-template-columns: 42px minmax(0, 1fr); max-width: 100%; }
.pv-launch-page .step > * { min-width: 0; }
.pv-launch-page h1,
.pv-launch-page h2,
.pv-launch-page h3,
.pv-launch-page p,
.pv-launch-page .state-value,
.pv-launch-page .btn {
  overflow-wrap: anywhere;
}

/* Gravity Forms integration surfaces. */
.pv-launch-form { overflow: visible; }
.pv-launch-form .gform_wrapper { color: inherit; }
.pv-launch-form input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.pv-launch-form textarea,
.pv-launch-form select {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: inherit;
}
.pv-launch-form .gform_button,
.pv-launch-form button[type="submit"] {
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}
.pv-launch-form-placeholder code { overflow-wrap: anywhere; }

/* Premium Gravity Forms polish. */
.pv-launch-form {
  padding: clamp(1.1rem, 3vw, 2rem);
}
.pv-launch-form .gform_wrapper,
.pv-launch-form .gform-theme--foundation,
.pv-launch-form .gform-theme--framework {
  --gf-local-bg-color: transparent;
  --gf-ctrl-bg-color: rgba(255,255,255,.065);
  --gf-ctrl-border-color: rgba(255,255,255,.16);
  --gf-ctrl-color: currentColor;
  --gf-ctrl-label-color-primary: currentColor;
  --gf-ctrl-desc-color: var(--muted, rgba(255,255,255,.68));
  --gf-ctrl-btn-bg-color-primary: var(--launch-accent, #38bdf8);
  --gf-ctrl-btn-color-primary: #06111d;
}
.pv-launch-form .gform_fields {
  row-gap: clamp(.9rem, 2vw, 1.25rem);
}
.pv-launch-form .gfield_label,
.pv-launch-form legend.gfield_label {
  font-weight: 800;
  letter-spacing: -.015em;
}
.pv-launch-form input[type="text"],
.pv-launch-form input[type="email"],
.pv-launch-form input[type="tel"],
.pv-launch-form textarea,
.pv-launch-form select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: rgba(255,255,255,.065) !important;
  color: inherit !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 10px 28px rgba(0,0,0,.14);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.pv-launch-form textarea { min-height: 130px; }
.pv-launch-form input:focus,
.pv-launch-form textarea:focus,
.pv-launch-form select:focus {
  border-color: color-mix(in srgb, var(--launch-accent, #38bdf8), white 10%) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 78%), inset 0 1px 0 rgba(255,255,255,.06);
  outline: none;
}
.pv-launch-form .gform_button,
.pv-launch-form button[type="submit"] {
  min-height: 50px;
  padding: .9rem 1.25rem;
  border-radius: 999px !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--launch-accent, #38bdf8), var(--launch-accent-2, #a78bfa)) !important;
  color: #06111d !important;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 78%);
}
.pv-launch-form .gform_footer { margin-top: clamp(1rem, 2vw, 1.5rem) !important; }
.pv-launch-form .gfield_required { color: var(--launch-accent, #38bdf8); }
.pv-launch-form .validation_message,
.pv-launch-form .gform_validation_errors {
  border-radius: 18px;
}

/* Breakpoint hardening: mobile-first perfect at 375/768/1024/1440. */
.pv-launch-page,
.pv-launch-page * { box-sizing: border-box; }
.pv-launch-page img,
.pv-launch-page svg,
.pv-launch-page video { max-width: 100%; height: auto; }
.pv-launch-page table {
  width: 100%;
  border-collapse: collapse;
}
.pv-launch-page .btn,
.pv-launch-form .gform_button,
.pv-launch-form button[type="submit"],
.pv-launch-form input[type="submit"] {
  min-height: 48px !important;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pv-launch-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.pv-launch-form textarea,
.pv-launch-form select,
.pv-launch-form .ginput_container input,
.pv-launch-form .ginput_container textarea,
.pv-launch-form .ginput_container select {
  min-height: 48px !important;
  font-size: 16px !important;
  max-width: 100% !important;
}
.pv-launch-form textarea,
.pv-launch-form .ginput_container textarea { min-height: 132px !important; }

@media (max-width: 767px) {
  .pv-launch-page .hero-actions,
  .pv-launch-page .nav-actions,
  .pv-launch-page .sticky-cta,
  .pv-launch-page .cta-panel .hero-actions {
    width: 100%;
  }
  .pv-launch-page .hero-actions .btn,
  .pv-launch-page .nav-actions .btn,
  .pv-launch-page .cta-panel .btn,
  .pv-launch-page .sticky-cta .btn {
    width: 100%;
    white-space: normal;
  }
  .pv-launch-page table,
  .pv-launch-page thead,
  .pv-launch-page tbody,
  .pv-launch-page tr,
  .pv-launch-page th,
  .pv-launch-page td {
    display: block;
    width: 100% !important;
  }
  .pv-launch-page thead { display: none; }
  .pv-launch-page tr {
    margin-block: .85rem;
    padding: .95rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
  }
  .pv-launch-page th,
  .pv-launch-page td {
    border: 0 !important;
    padding: .35rem 0 !important;
  }
  .pv-launch-page td:first-child {
    color: var(--muted, rgba(255,255,255,.68));
    font-size: .94rem;
  }
  .pv-launch-page td + td {
    margin-top: .25rem;
    font-weight: 800;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pv-launch-page .hero-actions .btn,
  .pv-launch-page .cta-panel .btn { min-width: min(240px, 42vw); }
}

@media (max-width: 767px) {
  .pv-launch-page table,
  .pv-launch-page tbody,
  .pv-launch-page tr,
  .pv-launch-page th,
  .pv-launch-page td {
    min-width: 0 !important;
    max-width: 100% !important;
    inline-size: 100% !important;
  }
  .pv-launch-page table {
    display: block !important;
    overflow: visible !important;
  }
  .pv-launch-page tbody,
  .pv-launch-page tr,
  .pv-launch-page td,
  .pv-launch-page th { display: block !important; }
}

.pv-launch-page .brand,
.pv-launch-page .pv-ecosystem-card {
  min-height: 48px !important;
  align-items: center;
}
.pv-launch-page .pv-ecosystem-card {
  min-height: clamp(8.5rem, 22vw, 12rem) !important;
  display: grid !important;
  gap: .45rem;
}

.pv-launch-page nav a,
.pv-launch-page .nav-links a {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center;
}
@media (max-width: 1023px) {
  .pv-launch-page table,
  .pv-launch-page thead,
  .pv-launch-page tbody,
  .pv-launch-page tr,
  .pv-launch-page th,
  .pv-launch-page td {
    display: block !important;
    width: 100% !important;
    inline-size: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .pv-launch-page thead { display: none !important; }
  .pv-launch-page table { overflow: visible !important; }
  .pv-launch-page tr {
    margin-block: .85rem;
    padding: .95rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
  }
  .pv-launch-page th,
  .pv-launch-page td {
    border: 0 !important;
    padding: .35rem 0 !important;
  }
}
.pv-launch-page nav a,
.pv-launch-page .nav-links a { min-width: 44px !important; }

@media (max-width: 1023px) {
  .pv-launch-page .hero-actions,
  .pv-launch-page .cta-panel .hero-actions,
  .pv-launch-page .nav-actions {
    max-width: 100% !important;
    flex-wrap: wrap !important;
  }
  .pv-launch-page .hero-actions .btn,
  .pv-launch-page .cta-panel .btn,
  .pv-launch-page .nav-actions .btn {
    max-width: 100% !important;
    white-space: normal !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pv-launch-page .hero-actions .btn,
  .pv-launch-page .cta-panel .btn {
    flex: 1 1 min(100%, 240px) !important;
  }
}

.pv-launch-page .pv-ecosystem-link {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  padding: .72rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}
.pv-launch-page .pv-ecosystem-card:empty { display: none !important; }

/* Configurable conversion sections: positioning, offer, proof, FAQ, trust, success state. */
.positioning-grid .card,
.proof-grid .card,
.success-grid .card,
.offer-card,
.offer-highlight,
.trust-card,
.faq-item {
  min-height: 0;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .85rem;
}
.check-list li {
  display: grid;
  gap: .2rem;
  padding-left: 1.7rem;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--launch-accent, #38bdf8);
  font-weight: 900;
}
.check-list span,
.trust-grid p,
.faq-item p { color: var(--muted, rgba(255,255,255,.72)); }
.proof-metric {
  margin-top: auto;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--launch-accent, #38bdf8);
}
.faq-list {
  display: grid;
  gap: .85rem;
}
.faq-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 850;
}
.faq-item p { margin: .35rem 0 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.trust-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: 800;
}
@media (max-width: 767px) {
  .trust-links a { width: 100%; }
}
/* Admin status badges when LaunchOS CSS is loaded in admin previews. */
.status-ready,
.status-needed {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-weight: 800;
}
.status-ready { background: rgba(34,197,94,.14); color: #15803d; }
.status-needed { background: rgba(245,158,11,.14); color: #92400e; }

/* LaunchOS conversion surface: above-fold product interlinking + CTA strip. */
.pv-launch-page .pv-nav-divider { width: 1px; height: 1.2rem; background: rgba(255,255,255,.18); display: inline-block; margin-inline: .35rem; vertical-align: middle; }
.pv-launch-page .pv-nav-product-link { color: color-mix(in srgb, var(--launch-accent, #38bdf8), white 30%) !important; font-weight: 800; }
.pv-product-strip { padding: 0 0 clamp(1.25rem, 3vw, 2.5rem); margin-top: calc(clamp(1rem, 3vw, 2rem) * -1); position: relative; z-index: 2; }
.pv-product-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(15,23,42,.72)); box-shadow: 0 24px 80px rgba(0,0,0,.22); }
.pv-product-strip__inner strong { display: block; color: #fff; font-size: clamp(1rem, 2vw, 1.28rem); letter-spacing: -.01em; }
.pv-product-strip__inner span { display: block; color: rgba(226,232,240,.8); margin-top: .25rem; max-width: 68ch; }
.pv-product-strip__inner .kicker { margin: 0 0 .25rem; color: color-mix(in srgb, var(--launch-accent, #38bdf8), white 18%); }
.pv-product-strip__actions { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: flex-end; min-width: min(100%, 420px); }
@media (max-width: 900px) { .pv-product-strip__inner { align-items: stretch; flex-direction: column; } .pv-product-strip__actions { justify-content: flex-start; min-width: 0; } .pv-launch-page .pv-nav-divider, .pv-launch-page .pv-nav-product-link { display: none; } }
.pv-product-strip__inner { flex-wrap: wrap; }
.pv-product-proof { flex: 1 0 100%; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .25rem; }
.pv-product-proof span { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: rgba(226,232,240,.86); border-radius: 999px; padding: .42rem .68rem; font-weight: 700; font-size: .84rem; }

.pv-product-chooser { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.pv-product-chooser-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.pv-product-choice { border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: clamp(1rem, 2vw, 1.5rem); background: rgba(15,23,42,.55); box-shadow: 0 24px 80px rgba(2,6,23,.22); }
.pv-product-choice.is-current { border-color: color-mix(in srgb, var(--launch-accent, #38bdf8), white 24%); box-shadow: 0 24px 90px rgba(56,189,248,.18); }
.pv-product-choice .choice-label { margin: 0 0 .65rem; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; opacity: .74; }
.pv-product-choice h3 { margin-top: 0; margin-bottom: .65rem; }
.pv-product-choice .choice-price { font-weight: 800; margin: 1rem 0; color: var(--launch-accent, #38bdf8); }
.pv-product-choice .choice-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
@media (max-width: 900px) { .pv-product-chooser-grid { grid-template-columns: 1fr; } .pv-product-choice .choice-actions .button { width: 100%; text-align: center; } }

.pv-risk-reducers { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin-top: 1rem; }
.pv-risk-reducer { border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: .85rem; background: rgba(15,23,42,.42); }
.pv-risk-reducer strong { display: block; margin-bottom: .25rem; font-size: .88rem; }
.pv-risk-reducer span { display: block; font-size: .82rem; opacity: .8; line-height: 1.45; }
.pv-risk-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .75rem; font-size: .85rem; opacity: .86; }
.pv-risk-links a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .pv-risk-reducers { grid-template-columns: 1fr; } }
.pv-proof-assets { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin-top: 1rem; }
.pv-proof-assets a { display: block; text-decoration: none; color: inherit; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: .85rem; background: rgba(2,6,23,.28); }
.pv-proof-assets strong { display: block; margin-bottom: .25rem; font-size: .88rem; }
.pv-proof-assets span { display: block; font-size: .82rem; opacity: .78; line-height: 1.45; }
@media (max-width: 900px) { .pv-proof-assets { grid-template-columns: 1fr; } }

/* LaunchOS GF dark-surface contrast guard: Focusa / Forge / Engine. */
.pv-launch-page .gform_wrapper,
.pv-launch-page .gform_wrapper .gform_heading,
.pv-launch-page .gform_wrapper .gform_description,
.pv-launch-page .gform_wrapper .gform_required_legend,
.pv-launch-page .gform_wrapper .gfield,
.pv-launch-page .gform_wrapper .gfield_label,
.pv-launch-page .gform_wrapper .gform-field-label,
.pv-launch-page .gform_wrapper legend,
.pv-launch-page .gform_wrapper fieldset,
.pv-launch-page .gform_wrapper .gchoice label,
.pv-launch-page .gform_wrapper .ginput_complex label,
.pv-launch-page .gform_wrapper .gfield_description,
.pv-launch-page .gform_wrapper .gsection_description,
.pv-launch-page .gform_wrapper .gfield_html {
  color: #f8fafc !important;
}
.pv-launch-page .gform_wrapper .gfield_label,
.pv-launch-page .gform_wrapper .gform-field-label,
.pv-launch-page .gform_wrapper legend {
  font-weight: 850 !important;
}
.pv-launch-page .gform_wrapper .gfield_required,
.pv-launch-page .gform_wrapper .gfield_required_text {
  color: var(--launch-accent, #38bdf8) !important;
}
.pv-launch-page .gform_wrapper .gfield_description,
.pv-launch-page .gform_wrapper .ginput_complex label,
.pv-launch-page .gform_wrapper .gchoice label,
.pv-launch-page .gform_wrapper .gfield_html {
  color: rgba(248,250,252,.78) !important;
}
.pv-launch-page .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.pv-launch-page .gform_wrapper textarea,
.pv-launch-page .gform_wrapper select,
.pv-launch-page .gform_wrapper .ginput_total,
.pv-launch-page .gform_wrapper .ginput_product_price,
.pv-launch-page .gform_wrapper .gfield_price label {
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 14px !important;
  background: rgba(2,6,23,.62) !important;
  color: #f8fafc !important;
  box-shadow: none !important;
}
.pv-launch-page .gform_wrapper input::placeholder,
.pv-launch-page .gform_wrapper textarea::placeholder { color: rgba(248,250,252,.48) !important; }
.pv-launch-page .gform_wrapper option { background: #020617 !important; color: #f8fafc !important; }
.pv-launch-page .gform_wrapper input[type="submit"],
.pv-launch-page .gform_wrapper button[type="submit"],
.pv-launch-page .gform_wrapper .gform_button {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 48px !important;
  padding: .85rem 1.2rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background-color: var(--launch-accent, #38bdf8) !important;
  background-image: linear-gradient(135deg, var(--launch-accent, #38bdf8), color-mix(in srgb, var(--launch-accent, #38bdf8), #fff 22%)) !important;
  color: #06111d !important;
  font: 900 .95rem/1.1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  letter-spacing: -.01em !important;
  text-align: center !important;
  white-space: normal !important;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 78%) !important;
  cursor: pointer !important;
}
@media (max-width: 767px) {
  .pv-launch-page .gform_wrapper input[type="submit"],
  .pv-launch-page .gform_wrapper button[type="submit"],
  .pv-launch-page .gform_wrapper .gform_button { width: 100% !important; }
}

.pv-launch-form-checkout {
  margin-top: 1rem;
  padding: .95rem;
  border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 62%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 90%);
  display: grid;
  gap: .75rem;
}
.pv-launch-form-checkout p {
  margin: 0;
  color: rgba(248,250,252,.82);
  font-weight: 750;
  line-height: 1.45;
}
.pv-launch-form-checkout__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--launch-accent, #38bdf8), color-mix(in srgb, var(--launch-accent, #38bdf8), #fff 22%));
  color: #06111d !important;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 80%);
}
@media (max-width: 767px) {
  .pv-launch-form-checkout__button { width: 100%; }
}

/* LaunchOS modal forms: compact page, on-site GF + Stripe checkout. */
body.pv-launch-modal-open { overflow: hidden; }
.pv-launch-form-launcher {
  display: grid;
  gap: .85rem;
  align-items: start;
}
.pv-launch-form-launcher p {
  margin: 0;
  color: rgba(248,250,252,.82);
  font-weight: 750;
  line-height: 1.45;
}
.pv-launch-form-open { width: fit-content; max-width: 100%; }
.pv-launch-form-modal[hidden] { display: none !important; }
.pv-launch-form-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(.75rem, env(safe-area-inset-top)) .75rem max(.75rem, env(safe-area-inset-bottom));
  overflow: hidden;
}
.pv-launch-form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.82);
  backdrop-filter: blur(14px);
}
.pv-launch-form-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(calc(100dvh - 2rem), 860px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15,23,42,.98), rgba(2,6,23,.96));
  color: #f8fafc;
  box-shadow: 0 30px 120px rgba(0,0,0,.58), 0 0 80px color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 85%);
  padding: clamp(1rem, 2.2vw, 1.6rem);
}
.pv-launch-form-modal__close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 3;
  margin: -.35rem -.35rem .45rem .75rem;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(2,6,23,.82);
  color: #f8fafc;
  font: 900 1.25rem/1 system-ui, sans-serif;
  cursor: pointer;
}
.pv-launch-form-modal__dialog h2 { margin-top: 0; }
.pv-launch-form-modal__note { color: rgba(248,250,252,.78); font-weight: 750; line-height: 1.45; }
.pv-launch-form-modal .pv-launch-form { margin-top: 1rem; box-shadow: none; }
@media (max-width: 767px) {
  .pv-launch-form-open { width: 100%; }
  .pv-launch-form-modal {
    align-items: stretch;
    justify-content: stretch;
    padding: max(.45rem, env(safe-area-inset-top)) .45rem max(.45rem, env(safe-area-inset-bottom));
  }
  .pv-launch-form-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - max(.9rem, env(safe-area-inset-top)) - max(.9rem, env(safe-area-inset-bottom)));
    border-radius: 16px;
    padding: .9rem;
  }
}

/* Video demo section — immersive 16:9 frame with play overlay + lightbox */

/* ============================================================
   Video demo section — styled to match launch page card pattern
   Uses --launch-accent, var(--radius, 24px), translucent bg
   ============================================================ */
.pv-section-video-demo {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.pv-video-frame {
  position: relative;
  /* Match existing card surface pattern */
  border-radius: var(--radius, 24px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  overflow: hidden;
  /* Subtle glass shadow — existing ecosystem-card pattern */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 10px 28px rgba(0,0,0,.14);
  /* Hard constraint: always 16:9 */
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: var(--pv-frame-max, 900px);
  margin-inline: auto;
}

/* Duration badge — pill style, accent tinted */
.pv-video-frame__duration {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-left: auto;
  padding: .18rem .6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--launch-accent, #38bdf8) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8) 40%, transparent);
  color: var(--launch-accent, #38bdf8);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  pointer-events: none;
}

/* Poster button — full frame click target */
.pv-video-frame__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: #0b1220;
  font: inherit;
  color: inherit;
  display: block;
  overflow: hidden;
}
.pv-video-frame__poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.pv-video-frame__poster:hover img { transform: scale(1.04); }

/* Gradient overlay behind play button */
.pv-video-frame__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: radial-gradient(ellipse at center, rgba(15,23,42,.2) 0%, rgba(2,6,23,.65) 100%);
  transition: background .3s ease;
}
.pv-video-frame__poster:hover .pv-video-frame__overlay {
  background: radial-gradient(ellipse at center, rgba(15,23,42,.1) 0%, rgba(2,6,23,.5) 100%);
}

/* Play button — accent glow, matches pill/button style */
.pv-video-frame__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--launch-accent, #38bdf8) 14%, transparent);
  border: 2px solid color-mix(in srgb, var(--launch-accent, #38bdf8) 50%, transparent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--launch-accent, #38bdf8) 10%, transparent),
              0 0 0 12px color-mix(in srgb, var(--launch-accent, #38bdf8) 4%, transparent);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: pv-play-breathe 2.5s ease-in-out infinite;
}
@keyframes pv-play-breathe {
  0%, 100% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--launch-accent, #38bdf8) 10%, transparent), 0 0 0 12px color-mix(in srgb, var(--launch-accent, #38bdf8) 4%, transparent); }
  50%       { box-shadow: 0 0 0 8px color-mix(in srgb, var(--launch-accent, #38bdf8) 6%, transparent),  0 0 0 18px color-mix(in srgb, var(--launch-accent, #38bdf8) 2%, transparent); }
}
.pv-video-frame__poster:hover .pv-video-frame__play {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--launch-accent, #38bdf8) 16%, transparent),
              0 0 0 16px color-mix(in srgb, var(--launch-accent, #38bdf8) 6%, transparent);
}
.pv-video-frame__play svg { display: block; }

/* CTA label pill — matches pill button style */
.pv-video-frame__cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #f1f5f9;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: .88rem;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.pv-video-frame__cta-duration {
  opacity: .68;
  font-weight: 700;
}

/* Caption row at bottom */
.pv-video-frame__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(0deg, rgba(2,6,23,.75) 0%, transparent 100%);
  pointer-events: none;
}
.pv-video-frame__caption-text {
  margin: 0;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(226,232,240,.78);
}
.pv-video-frame__external {
  pointer-events: auto;
  color: var(--launch-accent, #38bdf8);
  font-weight: 700;
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.pv-video-frame__external:hover {
  color: color-mix(in srgb, var(--launch-accent, #38bdf8), white 20%);
  text-decoration: underline;
}

/* Bullets row — pill tags, accent tinted */
.pv-video-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 0;
  margin: 1.2rem 0 0;
  justify-content: center;
}
.pv-video-bullets li {
  padding: .32rem .75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--launch-accent, #38bdf8) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8) 25%, transparent);
  color: color-mix(in srgb, var(--launch-accent, #38bdf8) 80%, white 20%);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
}

/* Lightbox overlay */
.pv-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw;
}
.pv-video-lightbox[hidden] { display: none; }
.pv-video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.pv-video-lightbox__panel {
  position: relative;
  width: min(92vw, 1280px);
  max-height: 92vh;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius, 24px);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.7);
}
.pv-video-lightbox__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
}
.pv-video-lightbox__embed {
  position: absolute;
  inset: 0;
}
.pv-video-lightbox__embed iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.pv-video-lightbox__close {
  position: absolute;
  top: -44px; right: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(15,23,42,.7);
  color: #f1f5f9;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-video-lightbox__close:hover {
  background: color-mix(in srgb, var(--launch-accent, #38bdf8) 30%, transparent);
  transform: scale(1.06);
}
body.pv-video-lightbox-open { overflow: hidden; }

@media (max-width: 767px) {
  .pv-video-frame__play { width: 60px; height: 60px; }
  .pv-video-frame__cta { font-size: .8rem; padding: .4rem .8rem; }
  .pv-video-bullets li { font-size: .75rem; padding: .28rem .6rem; }
  .pv-video-lightbox__close { top: -40px; }
  .eyebrow .pv-video-mobile-trigger {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .6rem;
    border-radius: 999px;
    background: rgba(56,189,248,.12);
    border: 1px solid rgba(56,189,248,.35);
    color: var(--launch-accent, #38bdf8);
    font-size: .72rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-left: .5rem;
    vertical-align: middle;
    line-height: 1;
  }
}
.eyebrow .pv-video-mobile-trigger { display: none; }

/* ============================================================
   Source code / GitHub section — matches card surface pattern
   ============================================================ */
.pv-section-source-code {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.pv-source-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  /* Match existing card surface: translucent bg + border + radius */
  border-radius: var(--radius, 24px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 10px 28px rgba(0,0,0,.14);
  overflow: hidden;
  position: relative;
}
/* Subtle radial accent glow — matches ecosystem-card.is-current */
.pv-source-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 50%, color-mix(in srgb, var(--launch-accent, #38bdf8) 10%, transparent) 0%, transparent 55%),
    radial-gradient(circle at 100% 50%, color-mix(in srgb, var(--launch-accent-2, #a78bfa) 10%, transparent) 0%, transparent 55%);
  pointer-events: none;
}

/* GitHub icon — uses accent color like ecosystem is-current */
.pv-source-banner__icon {
  color: var(--launch-accent, #38bdf8);
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--launch-accent, #38bdf8) 40%, transparent));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-source-banner__icon svg { width: 40px; height: 40px; }

/* Body text — kicker + h2 + lede, matching existing section head pattern */
.pv-source-banner__body { min-width: 0; }
.pv-source-banner__body .kicker {
  margin: 0 0 .3rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--launch-accent, #38bdf8);
}
.pv-source-banner__body h2 {
  margin: 0 0 .45rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: #f8fafc;
}
.pv-source-banner__body .lede {
  margin: 0 0 .9rem;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(226,232,240,.78);
  max-width: 60ch;
}

/* Meta badges — pill style, accent tinted */
.pv-source-banner__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .7rem;
  margin-bottom: .85rem;
}
.pv-source-banner__repo,
.pv-source-banner__license,
.pv-source-banner__stars {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .22rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  color: rgba(203,213,225,.9);
}
.pv-source-banner__repo code {
  font-family: var(--launch-mono, ui-monospace, "JetBrains Mono", monospace);
  font-size: .78rem;
  color: #e2e8f0;
}
.pv-source-banner__stars { color: #fcd34d; font-weight: 700; }

/* Bullets — pill tags like video bullets */
.pv-source-banner__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
  font-size: .8rem;
  color: rgba(203,213,225,.75);
}
.pv-source-banner__bullets li {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding-left: 1rem;
  position: relative;
}
.pv-source-banner__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 800;
  font-size: .75rem;
}

/* CTA column — uses existing .btn-primary gradient pattern */
.pv-source-banner__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .45rem;
  flex-shrink: 0;
  z-index: 1;
}
/* GitHub button: matches .btn-primary gradient using accent var */
.pv-source-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  white-space: nowrap;
  padding: .75rem 1.25rem;
  font-size: .9rem;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  /* Existing .btn-primary gradient using launch-accent */
  background: linear-gradient(135deg, var(--launch-accent, #38bdf8), var(--launch-accent-2, #a78bfa)) !important;
  color: #0f172a;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 78%);
  transition: transform .2s ease, box-shadow .2s ease;
  font-family: inherit;
}
.pv-source-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 70%);
}
.pv-source-banner__secondary {
  text-align: center;
  font-size: .78rem;
  color: rgba(148,163,184,.8);
  text-decoration: none;
  padding: .3rem 0;
}
.pv-source-banner__secondary:hover {
  color: var(--launch-accent, #38bdf8);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .pv-source-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .pv-source-banner__icon { display: none; }
  .pv-source-banner__cta { flex-direction: row; align-items: center; justify-content: flex-start; }
  .pv-source-banner__btn { padding: .65rem 1rem; font-size: .85rem; }
  .pv-source-banner__secondary { padding: 0 .5rem; }
  .pv-source-banner__bullets { gap: .3rem .5rem; }
}
