/* Landing-page styles — ported from ai-readiness-life-sciences-landing-page.html.
   Scoped under .lp so the landing design system cannot collide with the main site
   (which reuses class names like .hero, .btn, .cta-card, .container, .eyebrow).
   Loaded on pages using the 'Landing Page' template + as an editor style. */


/* =========================================================
   Versetal — Redesign Mockup Stylesheet
   Design language: enterprise, technical, premium, AI-forward
   (base styles reused verbatim from the site design system)
   ========================================================= */

.lp {
  --bg:            #0A1F44;
  --bg-2:          #0E2750;
  --surface:       #143160;
  --surface-2:     #1A3B70;
  --line:          #1E3D75;
  --line-2:        #2A4D8A;
  --text:          #EAF1FA;
  --text-muted:    #9BB7D6;
  --text-dim:      #6E8FB3;
  --accent:        #84C342;
  --accent-hover:  #95D24E;
  --accent-2:      #7BB2D9;
  --logo-blue:     #2D5DBA;
  --warn:          #F5A623;
  --light-bg:      #F6F8FB;
  --light-surface: #FFFFFF;
  --light-text:    #0A1F44;
  --light-muted:   #475569;
  --light-line:    #E2E8F0;
  --radius:        12px;
  --radius-sm:     6px;
  --radius-lg:     20px;
  --radius-btn:    10px;
  --shadow-soft:   0 1px 2px rgba(0,0,0,.06), 0 8px 24px rgba(10,31,68,.08);
  --shadow-glow:   0 0 0 1px rgba(132,195,66,.18), 0 20px 60px rgba(132,195,66,.12);
  --max:           1200px;
  --pad:           clamp(20px, 4vw, 40px);
  --font:          "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:          ui-monospace, "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }
.lp { scroll-behavior: smooth; }
.lp {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
.lp a { color: inherit; text-decoration: none; }
.lp img, .lp svg { display: block; max-width: 100%; }

.lp .container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.lp h1, .lp h2, .lp h3, .lp h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.lp h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.03em; font-weight: 700; }
.lp h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.lp h3 { font-size: 1.2rem; }
.lp p { margin: 0; }

.lp .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.lp .eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px rgba(132,195,66,.7);
}

.lp .lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-muted); line-height: 1.65; max-width: 56ch; }

/* ---------- Nav (stripped for conversion — logo only, one CTA) ---------- */
.lp .nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 20, 36, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.lp .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.lp .brand { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 1.3rem; color: var(--accent-2); text-transform: lowercase; }
.lp .brand-mark { width: 32px; height: 32px; display: grid; place-items: center; }
.lp .nav-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-btn);
  background: var(--accent); color: #0A1F44; font-weight: 600; font-size: 0.9rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lp .nav-cta:hover { transform: translateY(-1px); background: var(--accent-hover); box-shadow: 0 10px 30px rgba(132,195,66,.3); }

/* ---------- Buttons ---------- */
.lp .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--radius-btn); font-weight: 600; font-size: 0.98rem;
  border: 1px solid transparent; cursor: pointer; width: 100%;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp .btn-primary { background: var(--accent); color: #0A1F44; }
.lp .btn-primary:hover { transform: translateY(-1px); background: var(--accent-hover); box-shadow: 0 10px 30px rgba(132,195,66,.3); }
.lp .btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); width: auto; }
.lp .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.lp .btn-arrow::after { content: "→"; transition: transform .15s ease; }
.lp .btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Hero ---------- */
.lp .hero { position: relative; padding: clamp(48px, 7vw, 80px) 0 clamp(60px, 8vw, 100px); overflow: hidden; isolation: isolate; }
.lp .hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 620px; height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(132,195,66,.16), transparent 60%); filter: blur(40px); z-index: -1;
}
.lp .hero::after {
  content: ""; position: absolute; inset: auto auto -30% -20%; width: 500px; height: 500px;
  background: radial-gradient(circle at 50% 50%, rgba(123,178,217,.16), transparent 60%); filter: blur(40px); z-index: -1;
}
.lp .hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  z-index: -1;
}
.lp .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.lp .hero h1 { margin: 18px 0 20px; }
.lp .hero .gradient {
  background: linear-gradient(110deg, var(--accent) 0%, #B7E069 50%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp .hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.lp .hero-meta .stat { font-family: var(--mono); font-size: 12px; color: var(--text-muted); }
.lp .hero-meta .stat strong { display: block; font-family: var(--font); font-size: 1.4rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }

.lp .tick-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.lp .tick-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.98rem; color: var(--text); }
.lp .tick-list li::before { content: "▹"; color: var(--accent); margin-top: 2px; flex-shrink: 0; }

@media (max-width: 980px) { .lp .hero-inner { grid-template-columns: 1fr; } }

/* ---------- Lead-gen form card ---------- */
.lp .lp-form-card {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); padding: clamp(26px, 3vw, 34px);
  box-shadow: 0 30px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
}
.lp .lp-form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.lp .lp-form-card .sub { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 22px; }
.lp .field { display: grid; gap: 6px; margin-bottom: 16px; }
.lp .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp .field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.lp .field input, .lp .field select, .lp .field textarea {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font-family: var(--font); color: var(--text); font-size: 0.95rem;
  transition: border-color .15s ease; width: 100%;
}
.lp .field input:focus, .lp .field select:focus, .lp .field textarea:focus { outline: none; border-color: var(--accent); }
.lp .field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.lp .lp-privacy { margin-top: 14px; font-size: 0.78rem; color: var(--text-dim); text-align: center; line-height: 1.6; }
.lp .lp-form-card .form-head-icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(132,195,66,.16), rgba(123,178,217,.16)); border: 1px solid var(--line-2); color: var(--accent); margin-bottom: 16px; }

.lp .thank-you { display: none; text-align: center; padding: 30px 10px; }
.lp .thank-you .form-head-icon { margin: 0 auto 18px; }
.lp .thank-you h3 { margin-bottom: 10px; }
.lp .thank-you p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Sections ---------- */
.lp section { padding: clamp(60px, 8vw, 96px) 0; }
.lp .section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.lp .section-head .eyebrow { justify-content: center; }
.lp .section-head h2 { margin-top: 14px; }
.lp .section-head p { margin-top: 14px; color: var(--text-muted); }

/* ---------- Trust / compliance strip ---------- */
.lp .trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 26px 0; }
.lp .trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px 40px; }
.lp .trust-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }
.lp .trust-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 36px; list-style: none; margin: 0; padding: 0; }
.lp .trust-list li { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.lp .trust-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .7; }

/* ---------- What you'll learn grid ---------- */
.lp .capabilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .lp .capabilities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lp .capabilities { grid-template-columns: 1fr; } }
.lp .cap { position: relative; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, background .2s ease; display: flex; flex-direction: column; gap: 12px; }
.lp .cap:hover { transform: translateY(-3px); border-color: var(--line-2); background: var(--surface-2); }
.lp .cap-icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(132,195,66,.16), rgba(123,178,217,.16)); border: 1px solid var(--line-2); color: var(--accent); }
.lp .cap h3 { font-size: 1.08rem; }
.lp .cap p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ---------- Audience grid ---------- */
.lp .industries { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp .industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .lp .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp .industry-grid { grid-template-columns: 1fr; } }
.lp .industry { padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,.02); border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease; display: flex; flex-direction: column; gap: 10px; }
.lp .industry:hover { border-color: var(--accent); transform: translateY(-2px); }
.lp .industry h4 { font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; }
.lp .industry p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }
.lp .industry .meta { margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }

/* ---------- CTA band ---------- */
.lp .cta-band { position: relative; padding: clamp(60px, 8vw, 100px) 0; overflow: hidden; isolation: isolate; }
.lp .cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(132,195,66,.14), transparent 60%); z-index: -1; }
.lp .cta-card { border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-2);
  padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .lp .cta-card { grid-template-columns: 1fr; } }
.lp .cta-card h2 { max-width: 20ch; margin-bottom: 14px; }
.lp .cta-card p { color: var(--text-muted); margin-bottom: 22px; }
.lp .cta-side { padding: 22px; border-radius: var(--radius); background: rgba(132,195,66,.05); border: 1px dashed rgba(132,195,66,.3); }
.lp .cta-side h4 { color: var(--accent); margin-bottom: 8px; font-size: 0.9rem; font-family: var(--mono); letter-spacing: 0.04em; }
.lp .cta-side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.lp .cta-side li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text); }
.lp .cta-side li::before { content: "↓"; color: var(--accent); font-weight: 600; }

/* ---------- Footer (minimal — no nav leaks) ---------- */
.lp .footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 36px 0; }
.lp .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.lp .footer-brand { display: flex; align-items: center; gap: 10px; color: var(--accent-2); font-size: 1rem; }
.lp .footer-meta { font-size: 0.82rem; color: var(--text-dim); font-family: var(--mono); letter-spacing: 0.03em; }
.lp .footer-meta a { color: var(--text-muted); }
.lp .footer-meta a:hover { color: var(--accent); }

/* Landing template: no sticky site nav, so drop the global body top padding + set bg. */
body.lp-template { padding-top: 0; background: #0A1F44; }

/* Header + footer use the shared main-site logo.svg (replacing the inline mark). */
.lp .brand .lp-logo { height: 40px; width: auto; display: block; }
.lp .footer-brand .lp-logo { height: 28px; width: auto; display: block; }

/* Native HubSpot form submission states (see assets/js/hs-native-form.js).
   The form fields themselves reuse the .lp .field / .btn-primary styles above. */
.lp .hs-native-success {
	background: rgba(132,195,66,.1); border: 1px solid rgba(132,195,66,.35);
	border-radius: var(--radius-lg, 14px); padding: 22px 24px; color: var(--text); line-height: 1.6;
}
.lp .hs-native-success p { margin: 0; }
.lp .hs-native-error { margin-top: 12px; color: var(--warn); font-size: .85rem; }
