/* ============================================================
   Marketing site â€” Standout Launchpad
   Static HTML. Edit copy directly in the preview.
   ============================================================ */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: var(--sl-font-sans);
  color: var(--sl-deep-navy);
  background: var(--sl-runway-white);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-head { max-width: 780px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 247, 250, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 32px; }
.nav-mark { font-family: var(--sl-font-sans); letter-spacing: 0.02em; line-height: 1.1; font-size: 17px; text-align: left; color: var(--sl-deep-navy); text-decoration: none; display: inline-flex; align-items: center; gap: 12px; }
.nav-mark-icon { display: block; width: 52px; height: 52px; object-fit: contain; flex: 0 0 auto; }
.nav-mark-text { display: inline-flex; flex-direction: column; }
.nav-mark .b { font-weight: 700; display: block; }
.nav-mark .r { font-weight: 400; display: block; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--sl-deep-navy); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--sl-launchpad-blue); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ---------- BUTTONS ---------- */
.btn { font-family: var(--sl-font-sans); font-weight: 600; font-size: 14.5px; padding: 12px 22px; border-radius: 6px; border: 1.5px solid transparent; cursor: pointer; letter-spacing: 0.01em; line-height: 1; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 140ms cubic-bezier(.2,0,0,1); }
.btn-primary { background: var(--sl-launchpad-blue); color: #fff; }
.btn-primary:hover { background: #2F76C2; }
.btn-on-dark { background: var(--sl-white); color: var(--sl-deep-navy); }
.btn-on-dark:hover { background: #E4E5EC; }
.btn-secondary { background: transparent; color: var(--sl-deep-navy); border-color: var(--sl-ink-20); }
.btn-secondary:hover { border-color: var(--sl-deep-navy); background: #fff; }
.btn-ghost { background: transparent; color: var(--sl-deep-navy); padding: 12px 0; }
.btn-ghost:hover { color: var(--sl-launchpad-blue); }
.btn-ghost-on-dark { background: transparent; color: #DCDEE8; padding: 12px 0; }
.btn-ghost-on-dark:hover { color: #fff; }
.btn-lg { font-size: 15px; padding: 15px 26px; }

/* ---------- HERO ---------- */
.hero {
  background-color: var(--sl-deep-navy);
  background-image: linear-gradient(rgba(8,8,26,0.68), rgba(8,8,26,0.68)), image-set(url('assets/hero.webp') type('image/webp'), url('assets/hero.png') type('image/png'));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--sl-white);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow { color: #8FC2F0; font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { font-weight: 800; font-size: 68px; line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 24px; max-width: 620px; }
.hero h1 em { font-style: normal; color: #8FC2F0; }
.hero .lead { font-size: 20px; line-height: 1.55; color: #E4E6F0; max-width: 560px; margin: 0 0 36px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* hero side card: 3-stage approach */
.method-card { background: var(--sl-slate-indigo); border-radius: 18px; padding: 32px; box-shadow: 0 28px 56px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.2); border: 1px solid #3D3D58; }
.method-card .lbl { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: #DCDEE8; font-weight: 700; }
.method-card .lbl .dot { width: 8px; height: 8px; border-radius: 50%; background: #8FC2F0; }
.method-card .step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid #3D3D58; align-items: start; }
.method-card .step:first-of-type { border-top: 0; padding-top: 4px; }
.method-card .step .n { font-family: var(--sl-font-mono); font-weight: 700; color: #8FC2F0; font-size: 14px; letter-spacing: 0.05em; padding-top: 2px; }
.method-card .step h5 { font-size: 17px; font-weight: 700; margin: 0 0 4px; color: #fff; letter-spacing: -0.005em; }
.method-card .step p { font-size: 13.5px; margin: 0; color: #DCDEE8; line-height: 1.45; }

/* ---------- SECTIONS ---------- */
section.block { padding: 104px 0; }
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sl-launchpad-blue); }
h2.section-title { font-weight: 700; font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin: 14px 0 18px; }
.section-lead { font-size: 19px; line-height: 1.55; color: var(--sl-ink-65); margin: 0; max-width: 720px; }
.band { background: var(--sl-deep-navy); color: var(--sl-white); }
.band .eyebrow { color: #8FC2F0; }
.band h2.section-title { color: #fff; }
.band .section-lead { color: #E4E6F0; }

/* ---------- STAKES (data band) ---------- */
.stakes { background: var(--sl-slate-indigo); color: #fff; padding: 88px 0; }
.stakes .eyebrow { color: #8FC2F0; }
.stakes h2 { font-weight: 700; font-size: 36px; line-height: 1.12; letter-spacing: -0.02em; margin: 14px 0 14px; color: #fff; max-width: 820px; }
.stakes .lead { color: #DCDEE8; font-size: 17px; line-height: 1.55; max-width: 720px; margin: 0 0 48px; }
.stakes-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.stakes-col h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #8FC2F0; margin: 0 0 18px; }
.stakes-stats { display: grid; gap: 14px; }
.stat-row { background: rgba(255,255,255,0.04); border: 1px solid #3D3D58; border-radius: 12px; padding: 18px 22px; display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: center; }
.stat-row .n { font-family: var(--sl-font-sans); font-weight: 800; font-size: 36px; letter-spacing: -0.025em; color: #fff; line-height: 1; }
.stat-row .n .sub { font-size: 1em; font-weight: 800; color: #8FC2F0; margin-left: 4px; letter-spacing: -0.025em; }
.stat-row .body { font-size: 14px; color: #DCDEE8; line-height: 1.5; }
.stat-row .body .src { display: block; margin-top: 6px; font-family: var(--sl-font-mono); font-size: 11px; color: #B0B3C5; letter-spacing: 0.02em; }

/* ---------- APPROACH ---------- */
.approach-video-wrap { margin-top: 48px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(26,26,46,0.12); background: var(--sl-deep-navy); aspect-ratio: 16/9; }
.approach-video-wrap iframe { width: 100%; height: 100%; display: block; border: none; }
.approach-note { margin-top: 28px; padding: 18px 22px; background: var(--sl-ink-05); border-radius: 10px; font-size: 14.5px; color: var(--sl-ink-65); display: flex; gap: 16px; flex-wrap: wrap; }
.approach-note strong { color: var(--sl-deep-navy); }
.approach-note span { display: inline-flex; align-items: center; gap: 8px; }
.approach-note .tick { width: 18px; height: 18px; border-radius: 5px; background: var(--sl-launchpad-blue); color: #fff; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- DEEP-DIVE BLOCKS (Sprint / Hack) ---------- */
.deep { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 56px; }
.deep .copy { display: flex; flex-direction: column; gap: 18px; }
.deep .copy ul { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 14px; }
.deep .copy li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 16px; line-height: 1.5; color: var(--sl-deep-navy); }
.deep .copy li strong { font-weight: 700; }
.deep .copy li .tick { width: 22px; height: 22px; border-radius: 6px; background: var(--sl-launchpad-blue); color: #fff; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.deep .copy .cta-row { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.band .deep .copy li { color: #fff; }
.band .deep .copy li .tick { background: #8FC2F0; color: var(--sl-deep-navy); }

/* product spec card */
.product-card-big { background: var(--sl-white); border-radius: 18px; padding: 32px; box-shadow: 0 14px 32px rgba(26,26,46,0.10), 0 4px 8px rgba(26,26,46,0.06); display: flex; flex-direction: column; gap: 14px; }
.band .product-card-big { background: var(--sl-slate-indigo); border: 1px solid #3D3D58; box-shadow: 0 28px 56px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.2); color: #fff; }
.product-card-big .head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 4px; }
.product-card-big h4 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.product-card-big .price { font-family: var(--sl-font-mono); font-weight: 700; color: var(--sl-launchpad-blue); font-size: 22px; letter-spacing: -0.01em; }
.band .product-card-big .price { color: #8FC2F0; }
.product-card-big dl { margin: 0; display: flex; flex-direction: column; }
.product-card-big .row { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--sl-ink-10); align-items: baseline; }
.band .product-card-big .row { border-top: 1px solid #3D3D58; }
.product-card-big .row:first-of-type { border-top: 0; padding-top: 4px; }
.product-card-big .row dt { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--sl-fg-subtle); margin: 0; }
.band .product-card-big .row dt { color: #8FC2F0; }
.product-card-big .row dd { margin: 0; font-size: 15.5px; font-weight: 600; color: var(--sl-deep-navy); line-height: 1.4; }
.band .product-card-big .row dd { color: #fff; }
.product-card-big .free-call { margin-top: 8px; padding: 14px 16px; background: var(--sl-ink-05); border-radius: 10px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-card-big .free-call .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--sl-fg-subtle); }
.product-card-big .free-call .v { font-weight: 700; font-size: 15px; color: var(--sl-deep-navy); }
.band .product-card-big .free-call { background: rgba(255,255,255,0.06); }
.band .product-card-big .free-call .lbl { color: #8FC2F0; }
.band .product-card-big .free-call .v { color: #fff; }

/* hack agenda card */
.agenda { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 14px; }
.agenda .half { background: rgba(255,255,255,0.04); border: 1px solid #3D3D58; border-radius: 12px; padding: 18px 20px; }
.agenda h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #8FC2F0; font-weight: 700; margin: 0 0 14px; }
.agenda ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.agenda li { display: grid; grid-template-columns: 88px 1fr; gap: 14px; font-size: 13.5px; color: #DCDEE8; line-height: 1.4; }
.agenda li .t { font-family: var(--sl-font-mono); color: #fff; font-weight: 600; font-size: 12.5px; letter-spacing: 0.02em; }

/* core concepts pills */
.concepts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.concept { font-size: 13px; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid #3D3D58; color: #fff; font-weight: 600; }

/* judges grid */
.judges { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 28px; }
.judge { background: rgba(255,255,255,0.04); border: 1px solid #3D3D58; border-radius: 12px; padding: 18px 14px; text-align: center; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.judge .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #4A90D9, #2D2D44); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin-bottom: 4px; letter-spacing: -0.01em; }
.judge .name { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; }
.judge .co { font-size: 12px; color: #8FC2F0; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.testimonial { background: #fff; border-radius: 16px; padding: 32px 28px; border: 1px solid var(--sl-ink-10); display: flex; flex-direction: column; gap: 22px; box-shadow: 0 2px 6px rgba(26,26,46,0.04); }
.testimonial blockquote { font-family: var(--sl-font-serif); font-style: italic; font-size: 18px; line-height: 1.45; margin: 0; color: var(--sl-deep-navy); flex: 1; }
.testimonial .who { display: flex; align-items: center; gap: 14px; }
.testimonial .who .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #4A90D9, #2D2D44); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.testimonial .name { font-weight: 700; font-size: 14.5px; color: var(--sl-deep-navy); }
.testimonial .meta { font-size: 13px; color: var(--sl-fg-subtle); margin-top: 2px; }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: center; }
.about .copy h2 { font-weight: 700; font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin: 14px 0 18px; }
.about .copy p { font-size: 17px; line-height: 1.6; color: var(--sl-ink-65); margin: 0 0 14px; }
.about .copy p strong { color: var(--sl-deep-navy); font-weight: 700; }
.about-portrait { background: var(--sl-slate-indigo); border-radius: 18px; aspect-ratio: 4 / 3; position: relative; overflow: hidden; box-shadow: 0 14px 32px rgba(26,26,46,0.10), 0 4px 8px rgba(26,26,46,0.06); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-timeline { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 0; }
.about-timeline li { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--sl-ink-10); }
.about-timeline li:first-child { border-top: 0; }
.about-timeline .yr { font-family: var(--sl-font-mono); font-size: 13px; color: var(--sl-launchpad-blue); font-weight: 700; letter-spacing: 0.05em; padding-top: 2px; }
.about-timeline .what { font-size: 15.5px; color: var(--sl-deep-navy); line-height: 1.5; }
.about-timeline .what strong { font-weight: 700; }

/* ---------- REGISTER INTEREST ---------- */
.register { background: var(--sl-deep-navy); color: #fff; }
.register-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.register .copy h2 { color: #fff; font-weight: 700; font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin: 14px 0 18px; }
.register .copy p { color: #E4E6F0; font-size: 18px; line-height: 1.55; margin: 0 0 22px; }
.cohort-strip { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cohort-line { display: grid; grid-template-columns: 140px 1fr auto; gap: 16px; padding: 16px 20px; background: var(--sl-slate-indigo); border-radius: 10px; border: 1px solid #3D3D58; align-items: center; }
.cohort-line .term { font-family: var(--sl-font-mono); font-size: 12.5px; color: #8FC2F0; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.cohort-line .desc { font-size: 15px; color: #fff; font-weight: 600; }
.cohort-line .desc span { color: #DCDEE8; font-weight: 400; margin-left: 8px; }
.cohort-line .status { font-size: 12px; padding: 5px 12px; border-radius: 999px; font-weight: 600; letter-spacing: 0.02em; }
.cohort-line .status.full { background: var(--sl-ink-80); color: #DCDEE8; }
.cohort-line .status.open { background: #E2F4EA; color: #1E7A43; }

.register .form-card { background: var(--sl-white); border-radius: 18px; padding: 36px; color: var(--sl-deep-navy); box-shadow: 0 28px 56px rgba(0,0,0,0.30); }
.register .form-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 6px; }
.register .form-card .sub { font-size: 14.5px; color: var(--sl-ink-65); margin: 0 0 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: 13.5px; color: var(--sl-deep-navy); }
.field input, .field select, .field textarea {
  font-family: var(--sl-font-sans); font-size: 14.5px; padding: 11px 14px;
  border-radius: 6px; border: 1px solid var(--sl-ink-20); background: #fff;
  color: var(--sl-deep-navy); outline: none; transition: all 120ms;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sl-launchpad-blue); box-shadow: 0 0 0 3px rgba(74,144,217,0.25); }
.field textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .submit-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-top: 22px; flex-wrap: wrap; }
.form-card .finep { font-size: 12.5px; color: var(--sl-fg-subtle); margin: 0; line-height: 1.45; flex: 1; min-width: 220px; }

.form-thanks { display: none; padding: 28px 4px; }
.form-thanks .check { width: 56px; height: 56px; border-radius: 14px; background: #E2F4EA; color: #1E7A43; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin-bottom: 18px; }
.form-thanks h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--sl-deep-navy); }
.form-thanks p { font-size: 15.5px; color: var(--sl-ink-65); line-height: 1.55; margin: 0; }
.form-card.sent .form-thanks { display: block; }
.form-card.sent form { display: none; }

/* ---------- FOOTER ---------- */
.footer { background: var(--sl-deep-navy); color: #DCDEE8; padding: 64px 0 32px; border-top: 1px solid #3D3D58; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer h5 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; font-weight: 700; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: #DCDEE8; text-decoration: none; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer-mark { font-family: var(--sl-font-sans); font-size: 22px; letter-spacing: 0.02em; line-height: 1.15; color: #fff; }
.footer-mark .b { font-weight: 700; display: block; }
.footer-mark .r { font-weight: 400; display: block; }
.footer-tag { color: #DCDEE8; font-size: 14px; line-height: 1.6; margin-top: 14px; max-width: 280px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid #3D3D58; display: flex; justify-content: space-between; font-size: 13px; color: #B0B3C5; }

@media (max-width: 960px) {
  .hero-grid, .stakes-cols, .deep, .about, .register-grid, .footer-grid,
  .testimonials-grid, .agenda { grid-template-columns: 1fr; }
  .judges { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 52px; }
  h2.section-title, .register .copy h2, .about .copy h2, .stakes h2 { font-size: 34px; }
}

/* ---- MOBILE (phones) ---- */
@media (max-width: 640px) {
  /* Layout */
  .container { padding: 0 20px; }

  /* Nav — hide text links on small screens, keep mark + CTA */
  .nav-links { display: none; }
  .nav-inner { height: 64px; gap: 16px; }
  .nav-mark-icon { width: 40px; height: 40px; }

  /* Hero — use portrait-cropped WebP, centred, no upscale distortion */
  .hero {
    padding: 52px 0 60px;
    background-image: linear-gradient(rgba(8,8,26,0.68), rgba(8,8,26,0.68)), url('assets/hero-mobile-2.jpg');
    background-position: center center;
  }
  .hero h1 { font-size: 36px; letter-spacing: -0.02em; }
  .hero .lead { font-size: 16px; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Sections */
  section.block { padding: 64px 0; }
  .stakes { padding: 56px 0; }
  .register { padding: 64px 0; }

  /* Headings */
  h2.section-title, .register .copy h2, .about .copy h2, .stakes h2 { font-size: 26px; }
  .stakes h2 { font-size: 24px; }

  /* Stakes stats — collapse to single column */
  .stat-row { grid-template-columns: 1fr; gap: 6px; }
  .stat-row .n { font-size: 30px; }

  /* Approach note — stack vertically */
  .approach-note { flex-direction: column; gap: 10px; }

  /* About timeline — tighten columns */
  .about-timeline li { grid-template-columns: 68px 1fr; gap: 12px; padding: 14px 0; }

  /* Cohort strip — reflow */
  .cohort-line { grid-template-columns: 1fr auto; row-gap: 4px; }
  .cohort-line .desc { grid-column: 1 / -1; }

  /* Form */
  .field-row { grid-template-columns: 1fr; }
  .register .form-card { padding: 24px 18px; }
  .form-card .submit-row { flex-direction: column; align-items: stretch; }
  .form-card .submit-row .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .footer { padding: 48px 0 24px; }
}

/* ---------- FOOTER + FORM PRIVACY LINKS ---------- */
.footer-bottom-links { display: inline-flex; gap: 20px; align-items: center; }
.footer-bottom-links a { color: #B0B3C5; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--sl-white); }
@media (max-width: 960px) { .footer-bottom-links { justify-content: center; } }

.form-privacy { margin: 14px 0 0; font-size: 13.5px; color: var(--sl-fg-subtle); text-align: center; }
.form-privacy a { color: var(--sl-link); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color var(--sl-dur-fast) var(--sl-ease-standard); }
.form-privacy a:hover { color: var(--sl-link-hover); }

/* ---------- PRIVACY POLICY MODAL ---------- */
.pp-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.pp-modal[hidden] { display: none; }
.pp-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: pp-fade var(--sl-dur-base) var(--sl-ease-standard);
}
.pp-modal-dialog {
  position: relative;
  display: flex; flex-direction: column;
  width: 100%; max-width: 760px; max-height: min(86vh, 900px);
  background: var(--sl-bg-elevated);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-xl);
  box-shadow: var(--sl-shadow-xl);
  overflow: hidden;
  animation: pp-rise var(--sl-dur-slow) var(--sl-ease-emphasis);
}
.pp-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--sl-border);
  flex: 0 0 auto;
}
.pp-modal-head .eyebrow { margin-bottom: 8px; }
.pp-modal-head h2 { margin: 0; font-size: var(--sl-text-2xl); font-weight: 700; letter-spacing: var(--sl-tracking-h); color: var(--sl-fg); }
.pp-modal-close {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1;
  color: var(--sl-fg-subtle);
  background: var(--sl-ink-05);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-pill);
  cursor: pointer;
  transition: background var(--sl-dur-fast) var(--sl-ease-standard), color var(--sl-dur-fast) var(--sl-ease-standard);
}
.pp-modal-close:hover { background: var(--sl-ink-10); color: var(--sl-fg); }
.pp-modal-close:focus-visible { outline: none; box-shadow: var(--sl-shadow-focus); }

.pp-modal-body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: var(--sl-fg-muted);
  font-size: var(--sl-text-base);
  line-height: 1.65;
}
.pp-modal-body:focus { outline: none; }
.pp-modal-body .pp-updated { color: var(--sl-fg-subtle); margin-top: 0; }
.pp-modal-body h3 {
  margin: 30px 0 8px;
  font-size: var(--sl-text-md);
  font-weight: 700;
  color: var(--sl-fg);
  letter-spacing: var(--sl-tracking-h);
}
.pp-modal-body p { margin: 0 0 14px; }
.pp-modal-body ul { margin: 0 0 14px; padding-left: 22px; }
.pp-modal-body li { margin-bottom: 6px; }
.pp-modal-body a { color: var(--sl-link); text-decoration: underline; text-underline-offset: 2px; }
.pp-modal-body a:hover { color: var(--sl-link-hover); }

.pp-table-wrap { overflow-x: auto; margin: 0 0 16px; }
.pp-modal-body table { width: 100%; border-collapse: collapse; font-size: var(--sl-text-sm); }
.pp-modal-body th, .pp-modal-body td { text-align: left; padding: 10px 12px; border: 1px solid var(--sl-border); vertical-align: top; }
.pp-modal-body th { background: var(--sl-ink-05); color: var(--sl-fg); font-weight: 600; }

@keyframes pp-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pp-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .pp-modal-backdrop, .pp-modal-dialog { animation: none; }
}
@media (max-width: 640px) {
  .pp-modal { padding: 0; }
  .pp-modal-dialog { max-width: none; max-height: 100vh; height: 100vh; border-radius: 0; border: none; }
  .pp-modal-head { padding: 20px 20px 16px; }
  .pp-modal-body { padding: 20px 20px 28px; }
}