/* Centy marketing — shared design system (getcenty.com) */
:root {
  --green: #00a865;
  --green-deep: #007a49;
  --green-soft: #e6f7f0;
  --ink: #0e0e0e;
  --charcoal: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #6b6b6b;
  --gray-300: #d1d1d1;
  --gray-200: #e5e5e5;
  --gray-100: #f4f4f4;
  --gray-50: #fafafa;
  --white: #fff;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "DM Mono", "SF Mono", Menlo, monospace;
}

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

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
}

.nav-cta:hover {
  background: var(--green-deep);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Legal / content pages */
.page-main {
  padding: 48px 0 64px;
}

.page-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-h1 em {
  color: var(--green);
  font-style: italic;
}

.legal-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.legal-lead {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 24px;
}

.content-prose {
  max-width: 720px;
}

.content-prose h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 32px 0 12px;
  color: var(--ink);
}

.content-prose p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}

.content-prose a {
  color: var(--green-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-prose a:hover {
  color: var(--green);
}

.legal-list {
  margin: 0 0 16px;
  padding-left: 0;
}

.legal-list li {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 12px;
  padding-left: 1.25em;
  position: relative;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
  max-width: 900px;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px;
  background: var(--gray-50);
}

.about-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
}

.about-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
}

.trust-bar {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
  margin: 40px 0;
}

.trust-bar-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 16px;
}

.trust-bar-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 36px;
}

.trust-bar-logos span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gray-700);
  opacity: 0.85;
}

.cta-band {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
}

.cta-band p {
  font-size: 16px;
  color: var(--gray-700);
  max-width: 480px;
  margin: 0;
}

.btn-primary {
  display: inline-flex;
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--green-deep);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--gray-200);
  padding: 28px 0;
  font-size: 13px;
  color: var(--gray-500);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: var(--gray-700);
}

.site-footer a:hover {
  color: var(--ink);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
