/* Shared styles - identical base to index.html */
:root {
  --bg: #FBFBFD;
  --bg-mid: #F5F5F7;
  --bg-dark: #0A1A1F;
  --ink: #1D1D1F;
  --ink-soft: #515154;
  --ink-mute: #86868B;
  --line: #D2D2D7;
  --teal-dark: #1B7B8C;
  --teal-mid: #2A9AAB;
  --teal-light: #5DBFC9;
  --teal-pale: #E8F4F6;
  --rose: #D9C5C9;
  --link: #0066CC;
  --max: 1280px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* NAV - same as home */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 251, 253, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 22px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
}
.logo-mark {
  width: 26px; height: 26px; border-radius: 6px;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 14px;
}
.logo-mark::after { content: 'U'; }
.logo-text { color: var(--ink); }
.logo-text-mute { color: var(--ink-mute); font-weight: 400; }
.nav-links {
  display: flex; gap: 32px; list-style: none;
  font-size: 13px; color: var(--ink-soft);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-cta { font-size: 13px; font-weight: 500; color: var(--teal-dark); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* PAGE HEADER */
.page-header {
  text-align: center;
  padding: 100px 22px 70px;
  max-width: 880px;
  margin: 0 auto;
}
.page-eyebrow {
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-dark); margin-bottom: 18px;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.page-header h1 .accent {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-header p {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* CONTENT */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 22px 80px;
}

.page-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 60px 0 18px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
  color: var(--ink);
}

.page-content p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.6;
}

.page-content p strong { color: var(--ink); font-weight: 600; }

.page-content ul {
  margin: 18px 0 24px 0;
  padding-left: 0;
  list-style: none;
}

.page-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 16px; height: 1.5px;
  background: var(--teal-mid);
}

/* FOOTER - same as home */
footer {
  background: var(--bg-mid);
  padding: 50px 22px 30px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 36ch;
  margin-top: 14px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  margin-bottom: 14px; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--ink-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-dark); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-mute);
  flex-wrap: wrap; gap: 12px;
}

/* CTA pill */
.btn-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 10px 30px -10px rgba(27,123,140,0.5);
}
.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(27,123,140,0.65);
}

/* Inline CTA box */
.cta-box {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin: 50px 0;
}
.cta-box h3 {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: white;
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 17px;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-box .btn-pill {
  background: white;
  color: var(--teal-dark);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}

/* Footer reuse */
