/* ============================================================
   BuildUp — simplified copy-test page · Brand Kit v3
   One flow: headline → Step 1 video → Step 2 application → footer
   ============================================================ */

:root {
  --blue: #1285B1;
  --blue-dark: #0F6E92;
  --charcoal: #302F2F;
  --near-black: #1C1A18;
  --cyan: #7FCDE8;
  --white: #FFFFFF;
  --font-display: 'Poppins', 'Inter Tight', Arial, sans-serif;
  --font-body: 'Inter Tight', 'Poppins', Arial, sans-serif;
  --radius-lg: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--white);
  line-height: 1.55;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 920px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- Header: centered logo only ---------- */
.site-header {
  display: flex;
  justify-content: center;
  padding: 22px 20px 6px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark-img { width: 34px; height: 34px; border-radius: 8px; display: block; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ---------- Hero copy ---------- */
.hero { text-align: center; padding: 26px 0 8px; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin-inline: auto;
}
.hero-sub {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem);
  color: rgba(255,255,255,.82);
  max-width: 680px;
  margin: 18px auto 0;
}
.guarantee-line {
  font-weight: 600;
  color: var(--white);
  max-width: 640px;
  margin: 22px auto 0;
  padding: 14px 20px;
  border: 1px solid rgba(127,205,232,.35);
  border-radius: var(--radius-lg);
  background: rgba(18,133,177,.12);
}

/* ---------- Steps ---------- */
.step-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  margin-bottom: 18px;
}
.step-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

/* ---------- Step 1: video ---------- */
.step-video { padding: 40px 0 0; }
.vsl {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.vsl-embed { position: absolute; inset: 0; }

/* ---------- Step 2: application ---------- */
.step-apply { padding: 48px 0 64px; }
.tf-embed {
  max-width: 760px;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.tf-embed iframe { width: 100%; height: 620px; border: 0; display: block; }

/* ---------- Footer: centered logo, links only ---------- */
.site-footer {
  background: var(--near-black);
  padding: 36px 20px;
  text-align: center;
}
.site-footer .logo { justify-content: center; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}
.footer-links a {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
.footer-links a:hover { color: #fff; }

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .hero { padding-top: 18px; }
  .hero-sub { font-size: 1rem; }
  .guarantee-line { padding: 12px 16px; font-size: 0.9375rem; }
  .step-video { padding-top: 32px; }
  .step-apply { padding: 40px 0 48px; }
  .tf-embed iframe { height: 560px; }
  .vsl { border-radius: 8px; }
}
