/* 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; }

/* launchos-82 fix: eyebrow trigger styling now applies on ALL viewports (was @media mobile-only) */
.eyebrow .pv-video-mobile-trigger {
    display: inline-flex !important;
    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;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.eyebrow .pv-video-mobile-trigger:hover {
    background: rgba(56,189,248,.20);
    border-color: rgba(56,189,248,.55);
}

@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; }
}
/* launchos-81 fix: eyebrow trigger always visible (was display:none by default) */
.eyebrow .pv-video-mobile-trigger { display: inline-flex !important; }

/* ============================================================
   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; }
}

/* === launch-stripe-inline panel === */
.pv-launch-stripe-panel {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.pv-launch-stripe-panel[aria-hidden="false"],
.pv-launch-stripe-panel.pv-launch-stripe-panel--open {
    display: flex !important;
}
.pv-launch-stripe-panel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}
.pv-launch-stripe-panel__inner {
    position: relative;
    background: linear-gradient(180deg, #0b1729 0%, #050810 100%);
    color: #e5e7eb;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    padding: 2rem;
    max-width: 480px;
    width: calc(100% - 2rem);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.pv-launch-stripe-panel__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.pv-launch-stripe-panel__close:hover { color: #fff; }
.pv-launch-stripe-panel__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
}
.pv-launch-stripe-panel__lede {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}
.pv-launch-stripe-panel__form label {
    display: block;
    margin-bottom: 1rem;
}
.pv-launch-stripe-panel__form label > span {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 0.3rem;
}
.pv-launch-stripe-panel__form input {
    width: 100%;
    background: #050810;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    color: #e5e7eb;
    font-size: 0.95rem;
    font-family: inherit;
}
.pv-launch-stripe-panel__form input:focus {
    outline: none;
    border-color: #22d3ee;
}
.pv-launch-stripe-panel__element {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.5rem 0 1rem;
    min-height: 60px;
}
.pv-launch-stripe-panel__hint {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}
.pv-launch-stripe-panel__error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    color: #fca5a5;
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
}
.pv-launch-stripe-panel__fineprint {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 1rem 0 0;
    line-height: 1.4;
}
.pv-launch-stripe-panel__inner #pv-launch-stripe-submit.btn {
    width: 100%;
    background: #22d3ee;
    color: #050810;
    border: none;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0.5rem;
}
.pv-launch-stripe-panel__inner #pv-launch-stripe-submit.btn:disabled {
    background: #374151;
    color: #9ca3af;
    cursor: not-allowed;
}
.pv-launch-stripe-panel__inner #pv-launch-stripe-submit.btn:hover:not(:disabled) {
    background: #06b6d4;
}

/* === launch-stripe-inline panel — MOBILE-FIRST (fixes 375px cutoff) === */
/* Mobile (default): full-screen sheet, sticky header + footer */
.pv-launch-stripe-panel {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: stretch;
    justify-content: stretch;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}
.pv-launch-stripe-panel[aria-hidden="false"],
.pv-launch-stripe-panel.pv-launch-stripe-panel--open {
    display: flex !important;
}
.pv-launch-stripe-panel__backdrop {
    position: absolute;
    inset: 0;
    display: none;
}
.pv-launch-stripe-panel__inner {
    position: relative;
    background: linear-gradient(180deg, #0b1729 0%, #050810 100%);
    color: #e5e7eb;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}
.pv-launch-stripe-panel__header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(11, 23, 41, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    flex-shrink: 0;
}
.pv-launch-stripe-panel__header h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    line-height: 1.2;
}
.pv-launch-stripe-panel__close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    flex-shrink: 0;
}
.pv-launch-stripe-panel__close:hover { color: #fff; }
.pv-launch-stripe-panel__body {
    flex: 1 1 auto;
    padding: 1.25rem 1rem 1rem;
    overflow-y: auto;
}
.pv-launch-stripe-panel__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
    line-height: 1.3;
}
.pv-launch-stripe-panel__lede {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}
.pv-launch-stripe-panel__form label {
    display: block;
    margin-bottom: 0.875rem;
}
.pv-launch-stripe-panel__form label > span {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.3rem;
}
.pv-launch-stripe-panel__form input {
    width: 100%;
    background: #050810;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    color: #e5e7eb;
    font-size: 1rem;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}
.pv-launch-stripe-panel__form input:focus {
    outline: none;
    border-color: #22d3ee;
}
.pv-launch-stripe-panel__element {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.5rem 0 0.75rem;
    min-height: 80px;
}
.pv-launch-stripe-panel__hint {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
    padding: 0.5rem;
}
.pv-launch-stripe-panel__error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    color: #fca5a5;
    font-size: 0.85rem;
    margin: 0.5rem 0 0.75rem;
}
.pv-launch-stripe-panel__footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 0.75rem 1rem 1rem;
    background: rgba(11, 23, 41, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    flex-shrink: 0;
}
.pv-launch-stripe-panel__footer .btn {
    width: 100%;
    background: #22d3ee;
    color: #050810;
    border: none;
    padding: 0.85rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
}
.pv-launch-stripe-panel__footer .btn:disabled {
    background: #374151;
    color: #9ca3af;
    cursor: not-allowed;
}
.pv-launch-stripe-panel__footer .btn:hover:not(:disabled) {
    background: #06b6d4;
}
.pv-launch-stripe-panel__fineprint {
    color: #6b7280;
    font-size: 0.7rem;
    margin: 0.625rem 0 0;
    line-height: 1.4;
    text-align: center;
}

/* === Desktop (>= 640px): centered modal with backdrop === */
@media (min-width: 640px) {
    .pv-launch-stripe-panel {
        align-items: center;
        justify-content: center;
        background: transparent;
    }
    .pv-launch-stripe-panel__backdrop {
        display: block;
    }
    .pv-launch-stripe-panel__inner {
        max-width: 480px;
        max-height: calc(100vh - 4rem);
        height: auto;
        border-radius: 12px;
        border: 1px solid rgba(34, 211, 238, 0.3);
        padding: 0;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }
    .pv-launch-stripe-panel__body {
        padding: 1.75rem 1.75rem 1rem;
    }
    .pv-launch-stripe-panel__footer {
        padding: 0 1.75rem 1.5rem;
    }
    .pv-launch-stripe-panel__title {
        font-size: 1.25rem;
    }
}

/* === Responsive fixes for 375/768/1024/1440 with clamp() fluidity === */

/* Fluid hero typography — scales smoothly from 375 to 1440 */
:root {
    --pv-hero-fs: clamp(2.25rem, 1.5rem + 4vw, 4.5rem);     /* 36px → 72px */
    --pv-hero-lh: 1.14;
    --pv-h2-fs: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);     /* 24px → 36px */
    --pv-h3-fs: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);      /* 18px → 24px */
    --pv-body-fs: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem); /* 15px → 17px */
    --pv-small-fs: clamp(0.8125rem, 0.75rem + 0.25vw, 0.9375rem); /* 13px → 15px */
    --pv-section-py: clamp(2.5rem, 1.5rem + 4vw, 5rem);     /* 40px → 80px */
    --pv-container-px: clamp(1rem, 0.5rem + 2vw, 2rem);      /* 16px → 32px */
    --pv-container-max: 1200px;
}

/* Apply fluid sizing to common elements */
h1, .pv-launch-h1, .hero h1 {
    font-size: var(--pv-hero-fs) !important;
    line-height: var(--pv-hero-lh) !important;
    padding-bottom: 0.06em;
}
h2, .pv-launch-h2 {
    font-size: var(--pv-h2-fs) !important;
    line-height: 1.2 !important;
}
h3, .pv-launch-h3 {
    font-size: var(--pv-h3-fs) !important;
}

/* Nav fixes — prevent label wrapping, fix brand overlap */
.pv-launch-nav,
nav,
header nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 0.25rem + 1vw, 1.25rem);
    padding-left: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
    padding-right: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
}
.pv-launch-nav a,
nav a {
    white-space: nowrap !important;
    font-size: var(--pv-small-fs);
}
.pv-launch-brand,
.brand {
    white-space: nowrap !important;
    flex-shrink: 0;
    margin-right: clamp(0.5rem, 0.25rem + 1vw, 1rem);
}

/* On tablet (768-1024), hide secondary nav items (do NOT hide .brand, .logo, or primary nav links) */
@media (max-width: 1023px) {
    .pv-launch-nav .nav-secondary,
    nav .nav-secondary,
    header nav a[href*="arena"],
    header nav a[href*="engine"],
    header nav a[href*="focusa.dev"] {
        display: none !important;
    }
}

/* On mobile (<768): compact nav with hamburger trigger */
/* Hide nav-links on mobile (≤767px) — they go in the hamburger overlay on small screens.
   On tablet/desktop (≥768px), nav-links stay visible inline. */
@media (max-width: 767px) {
    .pv-launch-nav .nav-links,
    nav .nav-links,
    .pv-launch-nav__inner .nav-links,
    .arena-nav__inner .nav-links {
        display: none !important;
    }
}
    /* Keep the brand + buy CTA visible inline (no hamburger for them) */
    .pv-launch-nav,
    nav,
    .pv-launch-nav__inner,
    .arena-nav__inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
    }
    /* Compact brand on mobile */
    .brand,
    .pv-launch-brand,
    .arena-nav__inner > .brand {
        font-size: 0.9rem !important;
        flex-shrink: 0 !important;
    }
    /* Compact buy CTA on mobile */
    .nav-cta,
    a.nav-cta,
    .pv-launch-cta.pv-launch-cta-type-stripe-inline {
        font-size: 0.8125rem !important;
        padding: 0.4rem 0.75rem !important;
        white-space: nowrap !important;
    }
}

/* === Hamburger trigger button (small, top-right) === */
/* launchos-80 fix: hamburger trigger visible on ALL viewports */
.pv-mobile-nav-trigger {
    display: inline-flex !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #e5e7eb;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pv-mobile-nav-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}
.pv-mobile-nav-trigger svg {
    width: 20px;
    height: 20px;
}

/* === Hamburger overlay (slides in from right) === */
.pv-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}
.pv-mobile-nav-overlay[aria-hidden="false"] {
    display: flex !important;
}
.pv-mobile-nav-overlay__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85%, 320px);
    background: linear-gradient(180deg, #0b1729 0%, #050810 100%);
    border-left: 1px solid rgba(34, 211, 238, 0.3);
    padding: 1.5rem 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pv-mobile-nav-overlay__close {
    align-self: flex-end;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #9ca3af;
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.pv-mobile-nav-overlay__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.pv-mobile-nav-overlay a {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.5rem;
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.15s ease;
    white-space: nowrap;
}
.pv-mobile-nav-overlay a:hover,
.pv-mobile-nav-overlay a:focus {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}
.pv-mobile-nav-overlay a.pv-nav-product-link {
    color: #9ca3af;
    font-size: 0.85rem;
}
.pv-mobile-nav-overlay__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}
.pv-mobile-nav-overlay__cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Body padding to clear sticky CTA */
body.has-sticky-cta {
    padding-bottom: 5rem;
}
@media (min-width: 768px) {
    body.has-sticky-cta {
        padding-bottom: 4.5rem;
    }
}
@media (min-width: 1024px) {
    body.has-sticky-cta {
        padding-bottom: 4rem;
    }
}

/* Section padding fluid */
section,
.pv-launch-section {
    padding-top: var(--pv-section-py);
    padding-bottom: var(--pv-section-py);
    padding-left: var(--pv-container-px);
    padding-right: var(--pv-container-px);
}

/* Container max-width */
.wrap,
.container,
.pv-launch-wrap {
    max-width: var(--pv-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pv-container-px);
    padding-right: var(--pv-container-px);
    width: 100%;
    box-sizing: border-box;
}

/* Hero adjustments — prevent clipping */
.hero,
.pv-launch-hero {
    min-height: clamp(420px, 60vh, 720px);
    padding-top: clamp(1.5rem, 1rem + 2vw, 3rem);
    padding-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}
@media (max-width: 767px) {
    .hero,
    .pv-launch-hero {
        min-height: 480px;
    }

    /* launchos-84: install gateway terminal should follow intro text, not a reserved 480px hero slab. */
    .install-page .hero.pv-launch-hero.hero-style-install {
        min-height: 0 !important;
        padding-bottom: 0 !important;
    }

    .install-page .pv-section-install-tabs {
        padding-top: 0 !important;
    }

    .install-page .hero.pv-launch-hero.hero-style-install .hero-grid > p:empty {
        display: none;
        margin: 0;
    }
}

/* CTA button fluid sizing */
.btn,
.pv-launch-cta {
    font-size: var(--pv-body-fs);
    padding: clamp(0.6rem, 0.5rem + 0.4vw, 0.85rem) clamp(1rem, 0.75rem + 1vw, 1.5rem);
    white-space: nowrap;
}

/* Sticky CTA — always clear of content */
.sticky-cta {
    padding: clamp(0.75rem, 0.5rem + 1vw, 1rem) var(--pv-container-px);
    flex-wrap: wrap;
    gap: 0.75rem;
}
.sticky-cta > span {
    font-size: var(--pv-small-fs);
    white-space: normal;
    flex: 1 1 auto;
    min-width: 0;
}
@media (max-width: 767px) {
    .sticky-cta > span {
        flex-basis: 100%;
    }
}

/* Card grid — stack on mobile */
.cards,
.pv-launch-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
}
.hero-stakeholder-tag {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 50%);
    background: color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 90%);
    color: var(--launch-accent, #38bdf8);
    font-size: 0.82rem;
    font-weight: 850;
}
.pv-pricing-shell { min-height: 100vh; padding-top: clamp(2rem, 5vw, 5rem); }
.pv-pricing-hero h1 { max-width: 900px; }
.pv-pricing-table { display: grid; gap: 0.75rem; }
.pv-pricing-row { display: grid; grid-template-columns: 1fr 1.1fr 2fr 1.5fr auto; gap: 1rem; align-items: center; padding: 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 1rem; background: rgba(15,23,42,.72); }
.pv-pricing-row--head { color: rgba(248,250,252,.72); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 850; background: rgba(255,255,255,.04); }
.pv-pricing-note { color: var(--muted, #a7b0c2); margin-top: 1rem; }
@media (max-width: 900px) { .pv-pricing-row, .pv-pricing-row--head { grid-template-columns: 1fr; } .pv-pricing-row--head { display: none; } }
.card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 1rem;
    margin: 0 0 1rem;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}
.card-metric {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 0.7rem;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 45%);
    background: color-mix(in srgb, var(--launch-accent, #38bdf8), transparent 88%);
    color: var(--launch-accent, #38bdf8);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.02em;
}

/* Mission state panel — hide on small screens, simplify on medium */
.mission-state,
.pv-mission-state {
    font-size: var(--pv-small-fs);
}
@media (max-width: 767px) {
    .mission-state,
    .pv-mission-state {
        display: none !important;
    }
}

/* === Nav link spacing fix (overrides issue with arena /install/ nav) === */
.nav-links,
.pv-launch-nav__inner .nav-links,
.arena-nav__inner .nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 0.25rem + 1vw, 1.25rem);
}
.nav-links a,
.pv-nav-product-link {
    white-space: nowrap;
    font-size: var(--pv-small-fs);
}
.pv-nav-divider {
    display: inline-block;
    width: 1px;
    height: 1em;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0.25rem;
    flex-shrink: 0;
}

/* === Brand/logo spacing fix (prevent overlap with first nav link) === */
.brand,
.pv-launch-brand,
.arena-nav__inner > .brand {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-shrink: 0 !important;
    margin-right: clamp(0.75rem, 0.5rem + 1vw, 1.5rem) !important;
}

/* ==========================================================================
   MOBILE NAVIGATION DECK
   - A horizontal strip that drops from the top of the page
   - 3/1 grid: section cards (3/4) + product/CTA sidebar (1/4)
   - Beautiful glass-morphism + subtle gradient borders
   - Micro-animations on every interaction
   - All 4 launch sites always available in the sidebar
   - Doesn't cover the top bar (anchors to nav, drops below)
   ========================================================================== */

/* === Trigger button (small, top-right of nav) === */
.pv-mobile-nav-trigger {
    display: inline-flex !important;
    background: rgba(11, 23, 41, 0.95);
    border: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 30%, transparent);
    border-radius: 8px;
    color: var(--launch-accent, var(--launch-accent, #22d3ee));
    width: 36px;
    height: 36px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pv-mobile-nav-trigger:hover {
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 15%, transparent);
    border-color: var(--launch-accent, var(--launch-accent, #22d3ee));
    transform: scale(1.05);
}
.pv-mobile-nav-trigger:active {
    transform: scale(0.95);
}
.pv-mobile-nav-trigger svg {
    width: 18px;
    height: 18px;
}

/* === Overlay (fixed position, top set by JS to be just below the nav) === */
.pv-mobile-nav-overlay {
    position: fixed !important;
    /* Center on desktop using calc() — transform is overridden by [aria-hidden="false"] rule */
    left: calc(50vw - min(450px, 50vw - 1rem)) !important;
    right: auto !important;
    width: min(900px, calc(100vw - 2rem)) !important;
    max-width: 900px !important;
    bottom: auto !important;
    /* top is set by JS inline style (navRect.bottom) — don't override it */
    height: auto !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    z-index: 100000 !important;
    display: none;
    background: linear-gradient(180deg, rgba(11, 23, 41, 0.98) 0%, rgba(5, 8, 16, 0.98) 100%) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 20%, transparent) !important;
    border-bottom: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 30%, transparent) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.pv-mobile-nav-overlay[aria-hidden="false"] {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
}
.pv-mobile-nav-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--launch-accent, var(--launch-accent, #22d3ee)) 50%, transparent 100%);
    opacity: 0.6;
}

/* === Panel (the main content inside the overlay) === */
.pv-mobile-nav-overlay__panel {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 0;
    align-items: stretch;
    max-height: 70vh;
    overflow: hidden;
}

/* === Main area (3/4) — section cards in a grid === */
.pv-mobile-nav-overlay__main {
    padding: 0.875rem;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    align-content: start;
}
.pv-mobile-nav-overlay__main-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem 0.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.625rem;
}
.pv-mobile-nav-overlay__main-title {
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0;
}
.pv-mobile-nav-overlay__close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #9ca3af;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
.pv-mobile-nav-overlay__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* === Section cards === */
.pv-mobile-nav-overlay__card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0.75rem !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    color: #e5e7eb !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 0;
}
.pv-mobile-nav-overlay__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--launch-accent, var(--launch-accent, #22d3ee)), transparent);
    opacity: 0.4;
    transition: opacity 0.2s ease;
}
.pv-mobile-nav-overlay__card:hover,
.pv-mobile-nav-overlay__card:focus,
.pv-mobile-nav-overlay__card:active {
    background: linear-gradient(135deg, color-mix(in srgb, var(--launch-accent, #22d3ee) 12%, transparent), color-mix(in srgb, var(--launch-accent, #22d3ee) 4%, transparent)) !important;
    border-color: color-mix(in srgb, var(--launch-accent, #22d3ee) 40%, transparent) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--launch-accent, #22d3ee) 15%, transparent);
    color: #fff !important;
}
.pv-mobile-nav-overlay__card:hover::before,
.pv-mobile-nav-overlay__card:focus::before,
.pv-mobile-nav-overlay__card:active::before {
    opacity: 1;
}
.pv-mobile-nav-overlay__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--launch-accent, #22d3ee) 15%, transparent), color-mix(in srgb, var(--launch-accent, #22d3ee) 5%, transparent));
    border: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--launch-accent, var(--launch-accent, #22d3ee));
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pv-mobile-nav-overlay__card:hover .pv-mobile-nav-overlay__card-icon {
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 20%, transparent);
    border-color: var(--launch-accent, var(--launch-accent, #22d3ee));
}
.pv-mobile-nav-overlay__card-icon svg {
    width: 20px;
    height: 20px;
}
.pv-mobile-nav-overlay__card-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.15rem;
}
.pv-mobile-nav-overlay__card-desc {
    font-size: 0.7rem;
    color: #9ca3af;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* === Sidebar (1/4) — products + CTA === */
.pv-mobile-nav-overlay__sidebar {
    padding: 0.875rem 0.875rem 0.875rem 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.15);
}
.pv-mobile-nav-overlay__sidebar-header {
    padding: 0 0.25rem;
}
.pv-mobile-nav-overlay__sidebar-title {
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.pv-mobile-nav-overlay__products {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.pv-mobile-nav-overlay__product {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #e5e7eb;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}
.pv-mobile-nav-overlay__product::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 15%, transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}
.pv-mobile-nav-overlay__product:hover,
.pv-mobile-nav-overlay__product:focus,
.pv-mobile-nav-overlay__product:active {
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 10%, transparent);
    border-color: color-mix(in srgb, var(--launch-accent, #22d3ee) 30%, transparent);
    transform: translateX(2px);
    color: var(--launch-accent, var(--launch-accent, #22d3ee));
}
.pv-mobile-nav-overlay__product:hover::after,
.pv-mobile-nav-overlay__product:focus::after,
.pv-mobile-nav-overlay__product:active::after {
    width: 200px;
    height: 200px;
}
.pv-mobile-nav-overlay__product-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pv-mobile-nav-overlay__product-icon svg {
    width: 12px;
    height: 12px;
}
.pv-mobile-nav-overlay__product-label {
    font-size: 0.8rem;
    font-weight: 600;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pv-mobile-nav-overlay__product--current {
    background: linear-gradient(135deg, color-mix(in srgb, var(--launch-accent, #22d3ee) 18%, transparent), color-mix(in srgb, var(--launch-accent, #22d3ee) 6%, transparent));
    border-color: color-mix(in srgb, var(--launch-accent, #22d3ee) 40%, transparent);
    color: var(--launch-accent, var(--launch-accent, #22d3ee));
    position: relative;
}
.pv-mobile-nav-overlay__product--current::before {
    content: "YOU ARE HERE";
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 0.5rem;
    color: var(--launch-accent, var(--launch-accent, #22d3ee));
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* === CTA in sidebar === */
.pv-mobile-nav-overlay__cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.pv-mobile-nav-overlay__cta .btn {
    padding: 0.6rem 0.8rem;
    background: linear-gradient(135deg, var(--launch-accent, var(--launch-accent, #22d3ee)), var(--launch-accent-2, #06b6d4));
    color: #050810;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--launch-accent, #22d3ee) 20%, transparent);
}
.pv-mobile-nav-overlay__cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--launch-accent, #22d3ee) 30%, transparent);
}
.pv-mobile-nav-overlay__cta .btn--secondary {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

/* === Mobile fallback: stack to 1 column on very narrow screens === */
@media (max-width: 480px) {
    .pv-mobile-nav-overlay__panel {
        grid-template-columns: 1fr !important;
        max-height: 75vh;
    }
    .pv-mobile-nav-overlay__main {
        grid-template-columns: 1fr 1fr;
        max-height: 50vh;
    }
    .pv-mobile-nav-overlay__sidebar {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 0.75rem;
    }
    .pv-mobile-nav-overlay__products {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .pv-mobile-nav-overlay__product {
        flex: 1 1 calc(50% - 0.2rem);
    }
}

/* === REDESIGNED MEGAMENU: Network sites on top, sections below === */
/* Network section: prominent, full descriptions, big cards */
.pv-mobile-nav-overlay__network {
    padding: 0.875rem 0.875rem 0.625rem;
    border-right: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 15%, transparent);
    overflow-y: auto;
    display: block;
    height: auto;
}
/* Network always has right border */
.pv-mobile-nav-overlay__network-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.pv-mobile-nav-overlay__network-title {
    font-size: 0.65rem;
    color: var(--launch-accent, #22d3ee);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0;
}
.pv-mobile-nav-overlay__close {
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 20%, transparent);
    border-radius: 6px;
    color: #9ca3af;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
.pv-mobile-nav-overlay__close:hover {
    color: #fff;
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 20%, transparent);
}
.pv-mobile-nav-overlay__network-carousel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.pv-mobile-nav-overlay__network-track-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.pv-mobile-nav-overlay__network-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}
.pv-mobile-nav-overlay__network-track::-webkit-scrollbar {
    display: none;
}
.pv-mobile-nav-overlay__network-track .pv-mobile-nav-overlay__network-card {
    display: block;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0.625rem 0.75rem 0.625rem;
    background: linear-gradient(180deg, color-mix(in srgb, var(--launch-accent, #22d3ee) 8%, transparent), transparent);
    border: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 20%, transparent);
    border-radius: 8px;
    color: #e5e7eb;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
/* No left border on cards */
.pv-mobile-nav-overlay__network-card:hover,
.pv-mobile-nav-overlay__network-card:focus,
.pv-mobile-nav-overlay__network-card:active {
    background: linear-gradient(180deg, color-mix(in srgb, var(--launch-accent, #22d3ee) 15%, transparent), color-mix(in srgb, var(--launch-accent, #22d3ee) 5%, transparent));
    border-color: color-mix(in srgb, var(--launch-accent, #22d3ee) 40%, transparent);
}
.pv-mobile-nav-overlay__network-card--current {
    background: linear-gradient(180deg, color-mix(in srgb, var(--launch-accent, #22d3ee) 14%, transparent), color-mix(in srgb, var(--launch-accent, #22d3ee) 4%, transparent));
    border-color: color-mix(in srgb, var(--launch-accent, #22d3ee) 50%, transparent);
}
@keyframes pv-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}
.pv-mobile-nav-overlay__network-card--current::after {
    content: "";
    position: absolute;
    bottom: 0.6rem;
    right: 0.625rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--launch-accent, #22d3ee);
    box-shadow: 0 0 8px var(--launch-accent, #22d3ee);
    animation: pv-pulse 1.5s ease-in-out infinite;
    line-height: 1;
}

.pv-mobile-nav-overlay__network-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: center;
}
.pv-mobile-nav-overlay__network-arrow {
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 20%, transparent);
    border-radius: 6px;
    color: var(--launch-accent, #22d3ee);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    padding: 0;
}
.pv-mobile-nav-overlay__network-arrow:hover {
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 18%, transparent);
    border-color: var(--launch-accent, #22d3ee);
    color: #fff;
}
.pv-mobile-nav-overlay__network-dots {
    display: flex;
    gap: 0.375rem;
    align-items: center;
}
.pv-mobile-nav-overlay__network-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pv-mobile-nav-overlay__network-dot--active {
    background: var(--launch-accent, #22d3ee);
    width: 18px;
    border-radius: 4px;
}
/* No icon — clean text layout */
.pv-mobile-nav-overlay__network-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 0.125rem;
    letter-spacing: 0.01em;
}
.pv-mobile-nav-overlay__network-label > span:last-child {
    flex: 1;
    min-width: 0;
    /* Force text wrap (override inherited white-space: nowrap) */
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.pv-mobile-nav-overlay__network-label-icon {
    width: 18px;
    height: 18px;
    color: var(--launch-accent, #22d3ee);
    flex-shrink: 0;
}
.pv-mobile-nav-overlay__network-label-icon svg {
    width: 100%;
    height: 100%;
}
.pv-mobile-nav-overlay__network-meta {
    font-size: 0.6rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem;
}
.pv-mobile-nav-overlay__network-desc {
    font-size: 0.7rem;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0 0 0.4rem;
    /* Force text to wrap (override any inherited white-space: nowrap) */
    white-space: normal !important;
    word-wrap: break-word;
}
/* Visit CTA — appears at the bottom of each card */
.pv-mobile-nav-overlay__network-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--launch-accent, #22d3ee);
    margin-top: 0.25rem;
}
.pv-mobile-nav-overlay__network-cta::after {
    content: "→";
    font-weight: 700;
    transition: transform 0.15s ease;
}
.pv-mobile-nav-overlay__network-track .pv-mobile-nav-overlay__network-card:hover .pv-mobile-nav-overlay__network-cta::after {
    transform: translateX(2px);
}

/* === Sections section: compact, small (less prominent) === */
.pv-mobile-nav-overlay__sections {
    padding: 0.75rem 0.875rem 0.75rem 0.625rem;
    background: rgba(0, 0, 0, 0.15);
    overflow-x: hidden;          /* no horizontal scroll */
    overflow-y: auto;
    display: block;
    height: auto;
    min-width: 0;
}
.pv-mobile-nav-overlay__sections-header {
    margin-bottom: 0.4rem;
}
.pv-mobile-nav-overlay__sections-title {
    font-size: 0.6rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin: 0;
}
.pv-mobile-nav-overlay__sections-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
}
.pv-mobile-nav-overlay a.pv-mobile-nav-overlay__section-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.7rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    overflow: hidden;             /* clip overflowing text */
    min-width: 0;                 /* allow grid cell to shrink */
    max-width: 100%;
    white-space: nowrap;
}
.pv-mobile-nav-overlay a.pv-mobile-nav-overlay__section-link:hover,
.pv-mobile-nav-overlay a.pv-mobile-nav-overlay__section-link:focus,
.pv-mobile-nav-overlay a.pv-mobile-nav-overlay__section-link:active {
    background: color-mix(in srgb, var(--launch-accent, #22d3ee) 10%, transparent);
    color: var(--launch-accent, #22d3ee);
    border-color: color-mix(in srgb, var(--launch-accent, #22d3ee) 30%, transparent);
}
.pv-mobile-nav-overlay__section-icon {
    display: flex;
    align-items: center;
    color: var(--launch-accent, #22d3ee);
}

/* Remove the old grid layout (was creating 2-column 3/1 split) */
.pv-mobile-nav-overlay__panel {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr) !important;
    gap: 0 !important;
    align-items: start !important;
    position: static !important;       /* override position:absolute from base */
    top: auto !important;              /* override top:0 from base */
    right: auto !important;            /* override right:0 from base */
    bottom: auto !important;           /* override bottom:0 from base */
    max-height: none !important;
    height: auto !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}
/* Always 2-column horizontal, even on 375px */
.pv-mobile-nav-overlay__main,
.pv-mobile-nav-overlay__sidebar,
.pv-mobile-nav-overlay__cards-primary,
.pv-mobile-nav-overlay__cards-products,
.pv-mobile-nav-overlay__cards-cta,
.pv-mobile-nav-overlay__product,
.pv-mobile-nav-overlay__card,
.pv-mobile-nav-overlay__body {
    /* Reset the old grid layout */
    grid-template-columns: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex-direction: column !important;
}

/* === launchos-88/89/90 fix: Global header + footer (universal on every page) === */

/* Hide the default WordPress Twenty Twenty-Five theme footer (and its attribution) */
.wp-block-template-part footer,
.wp-block-template-part.site-footer,
footer.wp-block-template-part,
.site-footer {
    display: none !important;
}

/* Global footer styling */
.pv-launch-global-footer {
    margin-top: 4rem;
    padding: 2.5rem 1rem 2rem;
    background: linear-gradient(180deg, rgba(11, 23, 41, 0.4) 0%, rgba(5, 8, 16, 0.95) 100%);
    border-top: 1px solid color-mix(in srgb, var(--launch-accent, #22d3ee) 15%, transparent);
    font-size: 0.85rem;
    color: #9ca3af;
}
.pv-launch-global-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
.pv-launch-global-footer__nav,
.pv-launch-global-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.pv-launch-global-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.15s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}
.pv-launch-global-footer a:hover {
    color: var(--launch-accent, #22d3ee);
    background: rgba(34, 211, 238, 0.06);
}
.pv-launch-global-footer__copy {
    width: 100%;
    margin: 0.5rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
}
@media (max-width: 640px) {
    .pv-launch-global-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .pv-launch-global-footer__nav,
    .pv-launch-global-footer__legal {
        gap: 0.5rem;
        flex-wrap: wrap !important;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

/* Hide the default theme's <header> when our global header is showing */
header.wp-block-template-part,
header.site-header {
    display: none !important;
}
