/* ============================================================
   Refactora — hi-fi landing layer
   Sits on top of wireframes.css: reuses the design tokens and
   component styles, but drops the wireframe chrome/device frame
   and lays sections out full-bleed for a real, publishable page.
   ============================================================ */

html, body { background: var(--ink); }
body.site {
  background: #fff;
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

/* kill any wireframe annotation that might slip through */
.secnum, .note, .divider-note { display: none !important; }

/* centered content rail inside every full-bleed section */
.wrap { max-width: 1180px; margin: 0 auto; width: 100%; }

/* ---- sticky header (solid navy, continuous with hero) ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 56px;
  max-width: 1180px; margin: 0 auto;
}
.site-header .logo img { width: 80%; height: auto; display: block; }
.site-header .nav-cta {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: -.01em; color: #06281c; background: var(--emerald);
  border: 0; padding: 11px 18px; border-radius: 9px; cursor: pointer; white-space: nowrap;
  box-shadow: 0 0 26px rgba(var(--glow-ec), .22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.site-header .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 34px rgba(var(--glow-ec), .34); }

/* ---- full-bleed sections ---- */
section.wf { padding: 100px 56px; border-bottom: 0; }
section.wf.hero-centered { padding: 124px 56px 112px; }
section.wf > .wrap { position: relative; z-index: 1; }

/* slot styling on dark / light */
.media-slot { width: 100%; border-radius: 14px; overflow: hidden; display: block; }

/* ---- footer ---- */
.site-footer {
  background: var(--ink); color: #9aa6b3;
  padding: 56px 56px; border-top: 1px solid var(--ink-line);
}
.site-footer .wrap {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.site-footer .logo img { height: auto; width: 60%; display: block; margin-bottom: 14px; }
.site-footer .tagline { font-size: 14px; color: #8a96a4; max-width: 320px; line-height: 1.5; margin: 0; }
.site-footer .links { display: flex; gap: 22px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; }
.site-footer .links a { color: #aab4c0; text-decoration: none; }
.site-footer .links a:hover { color: #fff; }
.site-footer .copyright { width: 100%; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: #5b6a7d; margin-top: 10px; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .grid2, .grid3 { grid-template-columns: 1fr !important; }
  section.wf { padding: 60px 22px; }
  section.wf.hero-centered { padding: 64px 22px 70px; }
  .site-header .bar { padding: 0 22px; height: 60px; }
  .site-footer { padding: 42px 22px; }
  .display.xl { font-size: 34px; }
  .display.lg { font-size: 28px; }
  .gb-left, .gb-right { width: 360px; height: 380px; }
}
