:root {
  --bg: #0b1020;
  --bg-soft: #11182d;
  --surface: #ffffff;
  --surface-muted: #f4f7fb;
  --text: #182033;
  --text-soft: #51607a;
  --border: #dbe3ef;
  --accent: #315efb;
  --accent-dark: #2347c6;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

 a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: -9999px;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  left: 1rem;
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 249, 252, 0.85);
  border-bottom: 1px solid rgba(219, 227, 239, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--text);
}

.site-logo-wide {
  display: block;
  width: auto;
  height: 44px;
  max-width: none;
}

.site-logo:hover {
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 10px;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.hero-copy,
.card p,
.legal-card p,
.legal-card li,
.footer-wrap,
.last-updated {
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--border);
}

.placeholder-links {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
}

.placeholder-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.placeholder-label {
  color: var(--text);
  font-weight: 600;
}

.button-placeholder {
  margin-left: 0;
  cursor: default;
  opacity: 0.82;
  pointer-events: none;
  white-space: nowrap;
}

.microcopy {
  font-size: 0.96rem;
}

.section {
  padding: 1.5rem 0 3rem;
}

.section-muted {
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(219, 227, 239, 0.75);
  border-bottom: 1px solid rgba(219, 227, 239, 0.75);
}

.section-grid,
.card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-highlight {
  padding: 1.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.feature-list,
.legal-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.feature-list li,
.legal-card li {
  margin-bottom: 0.65rem;
}

.legal-card {
  padding: 1.8rem;
}

.legal-card h2 {
  margin-top: 1.7rem;
}

.legal-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.contact-email {
  font-size: 1.2rem;
  font-weight: 700;
}

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(219, 227, 239, 0.85);
}

.footer-wrap nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-grid,
  .card-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-logo {
    max-width: none;
  }

  .site-logo-wide {
    height: 34px;
  }
}
