/* index-launch — plainer, professional, less-poetic
   Builds on styles-cream.css. Adds: cleaner hero, solution cards, pathway timeline. */

:root {
  /* deeper navy accent (electric blue from concepts palette, used sparingly) */
  --launch-blue: #2a4a8a;
  --launch-blue-2: #4a6eff;
  --launch-soft: #e9e2d2;
}

/* HERO — replaces hero in styles-cream with calmer two-column composition */
.lp-hero {
  padding: 170px 0 80px;
  border-bottom: 1px solid var(--line);
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 14ch;
  font-weight: 400;
}
.lp-hero h1 em { font-style: italic; color: var(--launch-blue); }
.lp-hero-sub {
  margin-top: 28px;
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.45;
  max-width: 48ch;
}
.lp-hero-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.lp-hero-meta {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}
.lp-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.lp-hero-meta span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--launch-blue);
}

/* HERO visual — patient timeline */
.lp-timeline {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 2px;
}
.lp-tl-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.lp-tl-head .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--launch-blue);
}
.lp-tl-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  position: relative;
}
.lp-tl-list::before {
  content: ''; position: absolute;
  top: 6px; bottom: 6px; left: 5px; width: 1px;
  background: var(--line);
}
.lp-tl-list li {
  padding: 12px 0 12px 26px;
  position: relative;
  display: grid; grid-template-columns: 60px 1fr auto; gap: 14px;
  align-items: baseline;
}
.lp-tl-list li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.lp-tl-list li.active::before {
  background: var(--launch-blue); border-color: var(--launch-blue);
  box-shadow: 0 0 0 4px rgba(42, 74, 138, 0.12);
}
.lp-tl-list .when {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.lp-tl-list .what {
  font-family: var(--serif); font-size: 16px; letter-spacing: -0.01em; color: var(--fg);
}
.lp-tl-list .status {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted-2);
}
.lp-tl-list li.active .status { color: var(--launch-blue); }
.lp-tl-foot {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}
.lp-tl-foot strong { color: var(--fg); font-weight: 400; }

@media (max-width: 960px) {
  .lp-hero { padding: 130px 0 60px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-tl-list li { grid-template-columns: 56px 1fr auto; gap: 10px; }
  .lp-tl-list .what { font-size: 14px; }
}

/* SOLUTIONS — 4 plain-spoken cards */
.lp-section { padding: 120px 0; border-top: 1px solid var(--line); }
.lp-section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: end; margin-bottom: 64px;
}
.lp-section-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.04;
  letter-spacing: -0.02em; max-width: 18ch;
}
.lp-section-head h2 em { font-style: italic; color: var(--launch-blue); }
.lp-section-head p { color: var(--muted); font-size: 15px; max-width: 38ch; line-height: 1.55; }
@media (max-width: 800px) { .lp-section-head { grid-template-columns: 1fr; gap: 28px; } }

.lp-solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-solution {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 2px;
  position: relative;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: border-color 240ms, transform 240ms;
}
.lp-solution:hover { border-color: var(--launch-blue); transform: translateY(-2px); }
.lp-solution .lp-step {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--launch-blue);
}
.lp-solution h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; line-height: 1.1; letter-spacing: -0.015em;
  margin-top: 14px; color: var(--fg);
}
.lp-solution p {
  margin-top: 12px;
  font-size: 14px; color: var(--fg-2); line-height: 1.5;
}
.lp-solution ul {
  margin-top: auto;
  padding-top: 18px;
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--line);
}
.lp-solution ul li {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.lp-solution ul li::before { content: '· '; color: var(--launch-blue); margin-right: 2px; }
@media (max-width: 1080px) { .lp-solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-solutions-grid { grid-template-columns: 1fr; } }

/* WHO IT'S FOR — pill bar */
.lp-uses {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.lp-uses-head { text-align: center; margin-bottom: 36px; }
.lp-uses-head .eyebrow { display: block; margin-bottom: 12px; }
.lp-uses-head h3 {
  font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.015em;
  font-weight: 400; line-height: 1.2;
}
.lp-pills {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.lp-pill {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  font-size: 13px; color: var(--fg-2);
  font-family: var(--sans);
  transition: border-color 200ms, color 200ms, background 200ms;
  cursor: default;
}
.lp-pill:hover { border-color: var(--launch-blue); color: var(--fg); }

/* APPROACH — 3 numbered steps stacked horizontally */
.lp-approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: 2px;
}
.lp-approach-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.lp-approach-cell:last-child { border-right: none; }
.lp-approach-cell .num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--launch-blue);
}
.lp-approach-cell h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.015em;
  margin-top: 14px; color: var(--fg);
}
.lp-approach-cell p {
  margin-top: 14px; color: var(--fg-2); font-size: 14px; line-height: 1.5;
}
@media (max-width: 800px) {
  .lp-approach-grid { grid-template-columns: 1fr; }
  .lp-approach-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .lp-approach-cell:last-child { border-bottom: none; }
}

/* OUTCOMES — plain language, no big % */
.lp-outcomes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.lp-outcome {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
}
.lp-outcome:last-child { border-right: none; }
.lp-outcome .pill {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--launch-blue);
  border: 1px solid var(--launch-blue);
  padding: 4px 10px;
  border-radius: 999px;
}
.lp-outcome h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; line-height: 1.1; letter-spacing: -0.02em;
  margin-top: 18px;
  color: var(--fg);
}
.lp-outcome p {
  margin-top: 14px; color: var(--fg-2); font-size: 14px; line-height: 1.5; max-width: 28ch;
}
@media (max-width: 900px) {
  .lp-outcomes { grid-template-columns: 1fr; }
  .lp-outcome { border-right: none; border-bottom: 1px solid var(--line); padding: 40px 0; }
  .lp-outcome:last-child { border-bottom: none; }
}

/* SECURITY strip */
.lp-secure {
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.lp-secure .eyebrow { display: block; margin-bottom: 18px; }
.lp-secure p {
  font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3; letter-spacing: -0.01em;
  max-width: 56ch; margin: 0 auto; color: var(--fg);
}
.lp-secure p em { font-style: italic; color: var(--launch-blue); }

/* CTA strip — pre-footer */
.lp-cta {
  padding: 120px 0 160px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.lp-cta h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 18ch; margin: 0 auto;
  color: var(--fg);
}
.lp-cta h2 em { font-style: italic; color: var(--launch-blue); }
.lp-cta p {
  margin: 24px auto 0; max-width: 48ch;
  color: var(--muted); font-size: 16px; line-height: 1.5;
}
.lp-cta .cta-row {
  margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* FOOTER — bare bones */
.lp-foot {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.lp-foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  align-items: baseline;
}
.lp-foot .logo {
  font-family: var(--serif); font-size: 22px;
  display: inline-flex; align-items: baseline;
  letter-spacing: -0.01em;
}
.lp-foot .logo .mark {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--launch-blue); margin-right: 10px; transform: translateY(-1px);
}
.lp-foot .logo .tld { color: var(--muted); font-style: italic; font-size: 15px; margin-left: 2px; }
.lp-foot h6 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px; font-weight: 400;
}
.lp-foot a {
  font-size: 14px; color: var(--fg-2);
  transition: color 160ms;
  display: block; margin-bottom: 4px;
}
.lp-foot a:hover { color: var(--launch-blue); }
.lp-foot-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}
@media (max-width: 720px) {
  .lp-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .lp-foot-bottom { flex-direction: column; gap: 10px; }
}

/* Hide the launch nav's mobile-only items on desktop */
nav.top.lp .cta-btn.ghost { display: none; }
@media (min-width: 900px) {
  nav.top.lp .cta-btn.ghost { display: inline-flex; }
}
