/* ============================================================
   Bayline v2 · Shared page shell (secondary pages)
   Nav + article + footer, matches homepage design language.
   ============================================================ */

:root {
  --ink:    #0A0A0A;
  --ink-2:  #1a1a1a;
  --paper:  #FFFFFF;
  --paper-2:#F6F6F7;
  --line:   rgba(10,10,10,0.08);
  --mute:   #6B6B72;
  --blue:   #1F5EF7;
  --blue-2: #1548D6;
  --glow:   rgba(31,94,247,0.18);
  --serif:  'Instrument Serif', 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }

/* NAV — identical to home */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px 18px 20px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 28px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 14px; color: var(--mute); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: transform .15s, background .2s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); }
.arrow { display: inline-block; transition: transform .2s; }
.nav-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 900px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .brand-logo { height: 24px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
}

/* PAGE HEADER */
.page-header {
  padding: 140px 32px 60px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}
.page-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.page-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  padding-bottom: 0.06em;
}
.page-updated {
  margin-top: 20px;
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.01em;
}

/* ARTICLE (long-form legal / prose) */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 32px 120px;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.72;
}
.article h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 44px 0 14px;
  color: var(--ink);
}
.article h2:first-of-type { margin-top: 24px; }
.article p {
  margin-bottom: 16px;
  color: #303038;
}
.article ul, .article ol {
  margin: 0 0 20px 24px;
  color: #303038;
}
.article li { margin-bottom: 8px; }
.article strong { color: var(--ink); font-weight: 600; }
.article a {
  color: var(--blue);
  border-bottom: 1px solid rgba(31,94,247,0.25);
  transition: border-color .15s, color .15s;
}
.article a:hover { color: var(--blue-2); border-color: var(--blue-2); }
.article hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* CENTERED CARD (thank-you style) */
.center-card {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: 100px 24px 60px;
}
.center-card-inner {
  max-width: 520px;
  text-align: center;
}
.center-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(74,222,128,0.14);
  color: #16a34a;
  display: grid; place-items: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 6px rgba(74,222,128,0.08);
}
.center-check svg { width: 26px; height: 26px; }
.center-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}
.center-sub {
  font-size: 17px;
  color: var(--mute);
  line-height: 1.55;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 14px 26px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 30px var(--glow);
}
.btn-primary:hover { background: var(--blue-2); transform: translateY(-2px); box-shadow: 0 12px 40px var(--glow); }

/* FOOTER — matches homepage */
footer {
  background: #000;
  color: rgba(255,255,255,0.6);
  padding: 72px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 32px; }
}
.footer-brand-block { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-logo { display: inline-block; }
.footer-brand-logo img { height: 28px; width: auto; display: block; }
.footer-tag {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 300px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.footer-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 0.55; transform: scale(0.9); }
  50%     { opacity: 1; transform: scale(1.15); }
}
