:root {
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-100: #dbeafe;
  --blue-950: #172554;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --white: #ffffff;
  --max-width: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-800);
  background: var(--slate-50);
}

.heading-font {
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.site-nav {
  background: var(--white);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue-700);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}

.brand-name span {
  color: var(--blue-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-amber {
  background: var(--amber-400);
  color: var(--blue-900);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.btn-amber:hover {
  background: var(--amber-500);
}

.btn-blue {
  background: var(--blue-700);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-800);
}

.btn-outline-light {
  border: 2px solid rgb(255 255 255 / 0.8);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgb(255 255 255 / 0.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue-900);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 1.5rem;
}

.btn-white:hover {
  background: var(--amber-300);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgb(30 58 138 / 0.78), rgb(30 58 138 / 0.85)),
    url("https://picsum.photos/id/1015/2000/1200") center / cover no-repeat;
}

.hero-content {
  max-width: 42rem;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(255 255 255 / 0.2);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #4ade80;
  border-radius: 9999px;
}

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.hero-lead {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--blue-100);
  margin: 0 0 1rem;
}

.hero-copy {
  font-size: 1.125rem;
  color: var(--blue-100);
  max-width: 28rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

/* Contact */
.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1rem;
  color: var(--blue-900);
}

.contact-section p {
  color: var(--slate-600);
  max-width: 40rem;
  margin: 0 0 1.5rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.contact-links a {
  color: var(--blue-700);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--blue-900);
  margin: 0 0 0.5rem;
}

.legal-page .legal-meta {
  color: var(--slate-600);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--blue-900);
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--slate-600);
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--blue-700);
}

/* Footer */
.site-footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 4rem 0;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.875rem;
}

.footer-contact {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-contact {
    text-align: right;
  }
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact > div {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
  font-size: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    text-align: left;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-start;
  }
}

.footer-legal a {
  color: var(--slate-400);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--white);
}
