/* ============================================================
   OFM Saints — ofmsaints.com
   Converted from the "OFM Saints v2" design canvas.
   ============================================================ */

:root {
  --bg:        #FAFBFC;
  --panel:     #FFFFFF;
  --tile:      #F3F8FB;
  --ink:       #12181D;
  --muted:     #5F6B74;
  --faint:     #7C8791;
  --fainter:   #98A2AB;
  --blue:      #00AFF0;
  --blue-mid:  #0090CE;
  --blue-dark: #0083BC;
  --blue-hi:   #33C1F5;
  --line:      rgba(0, 175, 240, 0.28);
  --line-hi:   rgba(0, 175, 240, 0.45);
  --shell:     760px;
  --side:      400px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
::selection { background: var(--blue); color: #fff; }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); }

:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
}
.skip:focus { left: 0; color: #fff; }

/* ── top strip ─────────────────────────────────────────── */

.strip {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── layout shell ──────────────────────────────────────── */

.wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, var(--side));
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  padding-left: max(32px, calc(50vw - 620px));
}

.col-main {
  grid-column: 1;
  min-width: 0;
  max-width: var(--shell);
  width: 100%;
}

/* Spans every .col-main row so the sticky panel has a tall containing block.
   `1 / -1` will NOT work here: the rows are implicit, so -1 collapses to row 1.
   Keep the span count equal to the number of .col-main sections. */
.col-side {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: stretch;
  min-width: 0;
}

.rule { border-top: 1px solid var(--line); }

/* ── hero ──────────────────────────────────────────────── */

.hero { padding: 56px 0 64px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(0, 175, 240, 0.07);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--blue);
}

h1 {
  font-weight: 900;
  font-size: clamp(30px, 5.2vw, 46px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin: 26px 0 0;
  text-wrap: balance;
}
h1 em { color: var(--blue-mid); font-style: normal; }

.lede {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 20px 0 0;
  text-wrap: pretty;
}

/* ── VSL ───────────────────────────────────────────────── */

.vsl-wrap { margin-top: 36px; }

.vsl-frame {
  border: 1px solid rgba(0, 175, 240, 0.35);
  border-radius: 16px;
  padding: 8px;
  background: var(--panel);
}

.vsl-ph {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: radial-gradient(ellipse 60% 60% at 50% 45%, #0F161C, #070B0F);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.vsl-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0, 175, 240, 0.35);
}
.vsl-play span {
  width: 0;
  height: 0;
  border-left: 19px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 6px;
}
.vsl-note {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--faint);
  text-align: center;
  padding: 0 16px;
}

.vsl-video {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.vsl-video iframe { width: 100%; height: 100%; border: 0; display: block; }

.vsl-cap {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--faint);
}

/* ── quote + founder ───────────────────────────────────── */

.rule.col-main { padding: 56px 0; }

blockquote {
  margin: 0;
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.45;
  font-weight: 500;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 26px;
  text-wrap: pretty;
}

.founder {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.avatar {
  width: 88px;
  height: 88px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blue), var(--blue-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.founder-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
}
.founder-name svg { flex: none; }
.founder-bio {
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── results ───────────────────────────────────────────── */

h2 {
  font-weight: 900;
  font-size: clamp(26px, 4.4vw, 32px);
  letter-spacing: -0.02em;
  margin: 0;
}

.kicker {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-weight: 600;
  margin: 10px 0 32px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof figure { margin: 0; display: flex; flex-direction: column; gap: 8px; }

.shot {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 7px;
  background: var(--panel);
}
.shot img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.shot-ph {
  height: 260px;
  border-radius: 8px;
  background: var(--tile);
  border: 1px dashed var(--line-hi);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.proof figcaption {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  color: var(--faint);
  text-align: center;
}

/* ── final CTA ─────────────────────────────────────────── */

.final {
  text-align: center;
  padding: 72px 0 88px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.final .lede { margin: 0; }
.final .fine { margin: 0; }

/* ── buttons ───────────────────────────────────────────── */

.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  padding: 18px 42px;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--blue-hi); color: #fff; }
.btn:active { transform: translateY(1px); }

.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 18px 42px; }
.btn-block { display: block; text-align: center; padding: 15px 20px; font-size: 15px; }

.fine {
  font-size: 13px;
  color: var(--faint);
}

/* ── steps panel ───────────────────────────────────────── */

.panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 175, 240, 0.4) transparent;
  background: var(--panel);
  border-left: 1px solid var(--line-hi);
  padding: 24px 22px;
  box-shadow: -12px 0 40px rgba(18, 24, 29, 0.08);
  display: flex;
  flex-direction: column;
}

.panel-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-dark);
}
.panel-sub { font-size: 13px; color: var(--faint); margin-top: 4px; }

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.step:first-of-type { padding-top: 16px; margin-top: 12px; }
.step-last { border-bottom: 0; padding-bottom: 16px; }

.step-n {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line-hi);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body { min-width: 0; flex: 1; }
.step-body h3 { margin: 0; font-weight: 800; font-size: 15px; }
.step-body > p {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.step-body .btn-sm { margin-top: 8px; }

/* ── tech stack tiles ──────────────────────────────────── */

.tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.tool {
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.tool:hover {
  border-color: var(--line-hi);
  box-shadow: 0 2px 12px rgba(0, 175, 240, 0.12);
}
.tool-wide { grid-column: 1 / -1; }

.tool-logo {
  height: 52px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}
.tool-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.tool-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  flex: 1;
}
.tool-body p {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--muted);
}
.tool-body a {
  font-size: 11px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 4px;
}

.tool-wide .tool-body {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.tool-wide .tool-body p { flex: 1; min-width: 0; }
.tool-wide .tool-body a { flex: none; margin-top: 0; padding-top: 0; }

.panel-foot { margin-top: auto; padding-top: 12px; }
.panel-foot .fine { text-align: center; margin: 9px 0 0; font-size: 12px; }

/* ── footer ────────────────────────────────────────────── */

footer {
  padding: 32px 24px 40px;
  border-top: 1px solid rgba(0, 175, 240, 0.16);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer p { margin: 0; font-size: 13px; color: var(--faint); }
.wordmark {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--blue-mid);
}
.disclaimer { color: var(--fainter) !important; max-width: 640px; margin: 0 auto !important; }

/* ── responsive ────────────────────────────────────────── */

@media (max-width: 1080px) {
  .wrap {
    display: block;
    padding: 0 clamp(20px, 5vw, 40px);
    max-width: 780px;
    margin: 0 auto;
  }
  .col-main, .col-side { max-width: none; width: auto; }

  .panel {
    position: static;
    height: auto;
    overflow: visible;
    border: 1px solid var(--line-hi);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(18, 24, 29, 0.06);
    margin-bottom: 8px;
  }

  .hero { padding: 40px 0 36px; }
  .rule.col-main { padding: 44px 0; }
  .final { padding: 56px 0 64px !important; }
}

@media (max-width: 620px) {
  .proof { grid-template-columns: 1fr; }
  .shot img, .shot-ph { height: 300px; }

  .eyebrow { font-size: 11px; padding: 7px 14px; }
  .blockquote, blockquote { padding-left: 18px; }

  .founder { gap: 14px; }
  .avatar { width: 68px; height: 68px; font-size: 22px; }

  .btn-lg { padding: 16px 28px; width: 100%; }
  .final .btn-lg { max-width: 380px; }

  .tools { grid-template-columns: 1fr; }
  .tool-wide .tool-body { flex-direction: column; align-items: flex-start; }
  .tool-wide .tool-body a { margin-top: 4px; }
  .tool-body p { font-size: 12px; }
  .tool-body a { font-size: 12px; }
}
