:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-strong: #ffffff;
  --text: #000000;
  --muted: #000000;
  --line: #000000;
  --accent: #000000;
  --accent-dark: #000000;
  --accent-soft: #000000;
  --success: #000000;
  --progress: #000000;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.05), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(0, 0, 0, 0.03), transparent 18%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 38%, #ffffff 100%);
  line-height: 1.6;
}

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

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

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

.narrow {
  width: min(calc(100% - 2rem), 820px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

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

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  padding: 0.7rem 1rem;
  font: inherit;
}

.hero,
.page-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.8rem;
  color: var(--accent-dark);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.4rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.button-secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-points,
.simple-list {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.hero-panel,
.panel-card,
.info-card,
.service-item,
.stat-card,
.cta-card,
.contact-card,
.mail-card,
.faq-item {
  border-radius: var(--radius-lg);
}

.panel-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: var(--shadow);
}

.panel-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.tag-list span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-size: 0.95rem;
}

.tag-list.large span {
  background: #ffffff;
}

.section {
  padding: 2rem 0 4.5rem;
}

.alt-section {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.info-card,
.service-item,
.stat-card,
.contact-card,
.mail-card,
.faq-item {
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.info-card a {
  color: #000000;
  font-weight: 700;
}

.accent-card {
  background: #ffffff;
}

.pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pill.live {
  background: #000000;
  color: #ffffff;
}

.pill.progress {
  background: #000000;
  color: #ffffff;
}

.pill.focus {
  background: #000000;
  color: #ffffff;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.service-list,
.stats-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card strong {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.cta-section {
  padding: 1rem 0 5rem;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: var(--shadow);
}

.cta-card .eyebrow {
  color: #000000;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.footer-grid h4,
.footer-grid h3 {
  margin-bottom: 0.8rem;
}

.footer-grid a,
.footer-grid p,
.footer-bottom p {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.inner-page {
  min-height: 70vh;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.3rem 1.4rem;
  border-left: 4px solid #000000;
  background: #ffffff;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item h3 {
  margin-bottom: 0.6rem;
}

.faq-item a {
  color: #000000;
  font-weight: 700;
}

.legal-copy h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .card-grid,
  .stats-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

  .hero,
  .page-hero {
    padding-top: 3.5rem;
  }

  h1 {
    max-width: none;
  }
}
