/* Shared styles for program landing pages */
:root {
  --brand-1: #FF1F8F;
  --brand-2: #FF7A1A;
  --brand-deep: #D81E64;
  --brand-soft: #FFE7EE;
  --brand-grad: linear-gradient(135deg, #FF1F8F 0%, #FF4A4A 50%, #FF7A1A 100%);
  --brand-grad-soft: linear-gradient(135deg, rgba(255,31,143,0.10) 0%, rgba(255,122,26,0.10) 100%);
  --warm: #FBF7F4;
  --white: #FFFFFF;
  --ink: #1A1A24;
  --text-2: #6B6B73;
  --text-3: #9A9AA1;
  --border: #ECE6E2;
  --border-strong: #DDD6D0;
  --link-blue: #0A66C2;
  --good: #1A8A4A;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink); background: var(--warm);
  -webkit-font-smoothing: antialiased; font-weight: 400; line-height: 1.55;
}
h1,h2,h3,h4 { font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0; text-wrap: balance; }
h1,h2 { font-weight: 800; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-brand { background: var(--brand-grad); color: #fff; box-shadow: 0 8px 22px -8px rgba(255,74,74,0.55); }
.btn-brand:hover { box-shadow: 0 14px 30px -8px rgba(255,74,74,0.65); }
.btn-outline { background: var(--white); color: var(--ink); border: 1px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--ink); }
.btn-linkedin { background: var(--link-blue); color: #fff; }
.btn-linkedin:hover { background: #084d92; }
.btn-sm { padding: 12px 18px; font-size: 14px; border-radius: 8px; }
.arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 32px; width: auto; display: block; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,244,0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.nav-back { font-size: 14px; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; }
.nav-back:hover { color: var(--ink); }

/* Hero */
.lp-hero { padding: 80px 0 56px; position: relative; overflow: hidden; }
.lp-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(255,122,26,0.10), transparent 60%),
    radial-gradient(600px 360px at 10% 100%, rgba(255,31,143,0.10), transparent 60%);
  pointer-events: none;
}
.lp-hero .wrap { position: relative; }
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: var(--white);
  font-size: 12px; font-weight: 600;
  color: var(--ink); margin-bottom: 22px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.lp-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-grad);
  box-shadow: 0 0 0 4px rgba(255,31,143,0.10);
}
.lp-hero h1 { font-size: clamp(40px, 5.4vw, 64px); margin-bottom: 18px; max-width: 760px; }
.lp-hero .lead { color: var(--text-2); font-size: 19px; max-width: 640px; margin-bottom: 28px; }
.lp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.lp-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-2);
}
.lp-meta .checkdot { color: var(--good); font-weight: 700; margin-right: 4px; }

/* Sections */
section.block { padding: 80px 0; }
.block.warm { background: var(--warm); }
.block.white { background: var(--white); }
.section-head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { color: var(--text-2); margin-top: 14px; font-size: 17px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 12px;
}

/* Feature grid (what's inside) */
.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.10);
  border-color: var(--border-strong);
}
.lp-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lp-icon svg { width: 22px; height: 22px; }
.lp-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.lp-card p { font-size: 14.5px; color: var(--text-2); }
@media (max-width: 880px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-grid { grid-template-columns: 1fr; } }

/* Bullet list */
.lp-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.lp-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.lp-bullets .check {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%; background: var(--brand-grad-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-1);
}
.lp-bullets .check svg { width: 14px; height: 14px; }

/* Split / panel */
.lp-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
@media (max-width: 880px) { .lp-split { grid-template-columns: 1fr; gap: 40px; } }

/* CTA block */
.lp-cta-block {
  background: var(--brand-grad);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-block::before, .lp-cta-block::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px);
}
.lp-cta-block::before { width: 320px; height: 320px; background: rgba(255,255,255,0.18); top: -100px; left: -100px; }
.lp-cta-block::after { width: 260px; height: 260px; background: rgba(255,255,255,0.10); bottom: -80px; right: -60px; }
.lp-cta-block .inner { position: relative; z-index: 1; }
.lp-cta-block h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.lp-cta-block p { color: rgba(255,255,255,0.92); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.lp-cta-block .btn-light { background: #fff; color: var(--ink); }
.lp-cta-block .btn-light:hover { background: #f5f5f5; }
@media (max-width: 720px) { .lp-cta-block { padding: 40px 24px; } }

/* Footer (warm) */
footer.lp-foot {
  background: #F4EFE9; color: var(--ink);
  padding: 56px 0;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.lp-foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.lp-foot a { color: var(--ink); }
.lp-foot a:hover { color: var(--brand-1); }
.lp-foot .links { display: flex; gap: 24px; flex-wrap: wrap; }
