@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

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

:root {
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light: #f1eeea;
  --border: #e4e0d8;
  --border-dark: #ccc8c0;
  --muted: #7a7772;
  --body: #3d3a36;
  --heading: #0f0d0b;
  --blue: #1a4fd6;
  --blue-hover: #1540b8;
  --blue-light: #eef2fd;
  --blue-mid: #3b6fd4;
  --accent: #e85d26;
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.06);
  --max-w: 1120px;
  --nav-h: 68px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, .syne { font-family: 'Syne', sans-serif; }

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAVIGATION ─────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--heading); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--blue-hover) !important; }

/* ── LAYOUT UTILITIES ───────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-bg { background: var(--off-white); }
.section-dark { background: var(--heading); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 52px;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); }

.btn-dark { background: var(--heading); color: var(--white); }
.btn-dark:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-white { background: var(--white); color: var(--heading); }
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--body);
  border: 1px solid var(--border-dark);
}
.btn-outline:hover { border-color: var(--heading); color: var(--heading); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 12px 0;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--heading); }

.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ── TICKER ─────────────────────────────────────── */
.ticker { background: var(--heading); padding: 13px 0; overflow: hidden; }
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-item {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 28px;
  flex-shrink: 0;
}
.ticker-sep { color: rgba(255,255,255,0.12); }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── CARDS ──────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-dark {
  background: var(--heading);
  border-color: rgba(255,255,255,0.08);
}

/* ── PILL / BADGE ───────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-orange { background: #fef0e8; color: var(--accent); }

/* ── CHECKMARK LIST ─────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%231a4fd6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ── DIVIDER ────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--heading); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--heading); }

/* ── FORM ───────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 7px;
  font-family: 'Syne', sans-serif;
}
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--body);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,79,214,0.1);
}
textarea { min-height: 120px; resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%237a7772' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; gap: 20px; }
  .nav-links { gap: 18px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links li:not(:last-child) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── HAMBURGER ──────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 400;
  color: var(--body);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--heading); }
.mobile-menu .mobile-cta {
  margin-top: 8px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  border-bottom: none !important;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
}