@font-face {
  font-family: "Cormorant";
  src: url("fonts/cormorant-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  --navy: #0f172a;
  --navy2: #1e293b;
  --emerald: #10b981;
  --emerald-txt: #047857;
  --ivory: #f8fafc;
  --slate: #475569;
  --line: #e2e8f0;
  --canvas: #f8fafc;
  --peach: #ff9e80;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--canvas);
  line-height: 1.6;
}
h1, h2, h3, .wordmark { font-family: "Cormorant", Georgia, serif; font-weight: 700; }
a { color: var(--emerald-txt); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--emerald);
  padding: 18px 0;
}
header.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-mark img { height: 40px; display: block; }
nav.site-nav a {
  color: #cbd5e1;
  margin-left: 24px;
  font-weight: 500;
  font-size: 15px;
}
nav.site-nav a:hover { color: #fff; }
nav.site-nav a.cta {
  background: var(--emerald);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 24px;
}
nav.site-nav a.cta:hover { text-decoration: none; opacity: 0.92; }

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--ivory);
  padding: 72px 0 84px;
  text-align: center;
}
.hero .kicker {
  color: var(--emerald);
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  margin: 14px 0 8px;
}
.hero p.tagline {
  font-size: 19px;
  color: #cbd5e1;
  max-width: 560px;
  margin: 0 auto 32px;
}
.btn {
  display: inline-block;
  background: var(--emerald);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
}
.btn:hover { text-decoration: none; opacity: 0.9; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid #475569;
  color: #e2e8f0;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 16px;
  margin-left: 12px;
}
.btn-outline:hover { text-decoration: none; border-color: var(--emerald); color: #fff; }

section { padding: 64px 0; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .kicker {
  color: var(--emerald-txt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  font-weight: 600;
}
.section-head h2 { font-size: 32px; margin: 8px 0 10px; }
.section-head p { color: var(--slate); max-width: 560px; margin: 0 auto; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  border-top: 4px solid var(--emerald);
}
.card h3 { font-size: 20px; margin: 0 0 8px; font-family: "Inter"; font-weight: 600; }
.card p { color: var(--slate); font-size: 15px; margin: 0; }

.trust {
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
}
.trust h2 { font-size: 28px; margin-bottom: 14px; }
.trust p { color: #cbd5e1; max-width: 620px; margin: 0 auto; font-size: 16px; }

footer.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 36px 0;
  font-size: 14px;
  border-top: 4px solid var(--emerald);
}
footer.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site-footer a { color: #cbd5e1; }
footer.site-footer .links a { margin-left: 18px; }
footer.site-footer .links a:first-child { margin-left: 0; }

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal h1 { font-size: 36px; margin-bottom: 4px; }
.legal .updated { color: var(--slate); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 21px; font-family: "Inter"; font-weight: 600; margin-top: 34px; }
.legal p, .legal li { color: #334155; font-size: 15.5px; }
.legal ul { padding-left: 22px; }

@media (max-width: 640px) {
  nav.site-nav { display: flex; flex-wrap: wrap; justify-content: center; }
  nav.site-nav a { margin: 0 10px; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
}
