/* ============================================================
   Sophyworks.ai — Landing Page V2
   Stripe-inspired · Mega dropdown · Two-column hero
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;

  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-family);
  background: #fafafa;
  color: var(--slate-900);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAVBAR — Stripe-inspired
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 64px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.navbar__brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.navbar__brand-text {
  height: 22px;
  object-fit: contain;
}

/* ---------- Nav Links ---------- */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 2.5rem;
  flex: 1;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: color var(--transition-smooth), background var(--transition-smooth);
  white-space: nowrap;
}

.navbar__link:hover {
  color: var(--slate-900);
  background: var(--slate-50);
}

.navbar__chevron {
  transition: transform var(--transition-smooth);
}

.navbar__dropdown.is-open .navbar__chevron {
  transform: rotate(180deg);
}

/* ---------- Dropdown Container ---------- */
.navbar__dropdown {
  position: relative;
}

/* ---------- Mega Dropdown Panel ---------- */
.mega-dropdown {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  pointer-events: none;
}

.navbar__dropdown.is-open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0s;
  pointer-events: auto;
}

.mega-dropdown__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2.5rem 2.25rem;
  background: #fff;
  border-top: 1px solid var(--slate-100);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.mega-dropdown__heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.mega-dropdown__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--slate-700);
  transition: background var(--transition-smooth);
  margin-bottom: 0.15rem;
}

.mega-dropdown__item:hover {
  background: var(--slate-50);
}

.mega-dropdown__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-dropdown__item-icon--sky {
  background: var(--sky-50);
  color: var(--sky-600);
}

.mega-dropdown__item-icon--pink {
  background: var(--pink-50);
  color: var(--pink-600);
}

.mega-dropdown__item-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.3;
}

.mega-dropdown__item-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-top: 0.1rem;
}

/* ---------- Overlay ---------- */
.mega-overlay {
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(0, 0, 0, 0.08);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s 0.25s;
}

.mega-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s 0s;
}

/* ---------- Actions ---------- */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* ---------- Mobile toggle ---------- */
.navbar__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
}

.navbar__mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn--ghost {
  background: transparent;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
}

.btn--ghost:hover {
  color: var(--slate-900);
  background: var(--slate-100);
}

.btn--cta-nav {
  background: var(--sky-500);
  color: white;
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
}

.btn--cta-nav:hover {
  background: var(--sky-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}

.btn--signin {
  background: transparent;
  color: var(--slate-700);
  font-weight: 500;
  padding: 0.55rem 1rem;
}

.btn--signin:hover {
  color: var(--slate-900);
}

.btn--signup {
  background: var(--slate-900);
  color: white;
  padding: 0.6rem 1.4rem;
}

.btn--signup:hover {
  background: var(--slate-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn--cta {
  padding: 0.9rem 2.4rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--sky-500);
  color: white;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn--cta:hover {
  background: var(--sky-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
}

.btn--cta-secondary {
  padding: 0.9rem 2.4rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--slate-900);
  color: white;
}

.btn--cta-secondary:hover {
  background: var(--slate-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--transition-smooth);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ============================================================
   HERO — Two-column layout
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px; /* navbar height */
  overflow: hidden;
  background: #fafafa;
}

.hero__inner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 64px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 2rem;
}

.hero__content {
  flex: 1;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

.typewriter {
  color: var(--sky-500, #0ea5e9);
  border-right: 3px solid var(--sky-500, #0ea5e9);
  padding-right: 4px;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

  0%,
  100% {
    border-color: var(--sky-500, #0ea5e9);
  }

  50% {
    border-color: transparent;
  }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ---------- Hero Visual (right column) ---------- */
.hero__visual {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__gradient-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 24px;
}

.hero__wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__wave--1 {
  animation: heroWave1 12s ease-in-out infinite;
}

.hero__wave--2 {
  animation: heroWave2 14s ease-in-out infinite;
}

.hero__wave--3 {
  animation: heroWave3 10s ease-in-out infinite;
}

@keyframes heroWave1 {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(-30px) scale(1.05); }
}

@keyframes heroWave2 {
  0%, 100% { transform: translateX(0) scale(1.02); }
  50% { transform: translateX(20px) scale(0.98); }
}

@keyframes heroWave3 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.03); }
}


/* ============================================================
   FEATURES
   ============================================================ */

.features {
  position: relative;
  z-index: 10;
  padding: 4rem 2rem 5rem;
}

.features__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: transparent;
  border: none;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.8s;
}

.feature-card:nth-child(2) {
  animation-delay: 1s;
}

.feature-card:nth-child(3) {
  animation-delay: 1.2s;
}

.feature-card:nth-child(4) {
  animation-delay: 1.4s;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--slate-500);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__body {
  flex: 1;
  min-width: 0;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.7;
}


/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .mega-dropdown__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .features__inner {
    grid-template-columns: 1fr;
  }

  .navbar__links,
  .navbar__actions {
    display: none;
  }

  .navbar__mobile-toggle {
    display: flex;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
    min-height: 300px;
    width: 100%;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar__inner {
    padding: 0 1.25rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .hero__visual {
    min-height: 250px;
  }

  .features {
    padding: 0 1.25rem 3rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__visual {
    min-height: 200px;
  }
}


/* ============================================================
   DARK MODE — follows browser / OS preference
   ============================================================ */
@media (prefers-color-scheme: dark) {

  /* ---------- Override palette variables ---------- */
  :root {
    --slate-50: #0f172a;
    --slate-100: #1e293b;
    --slate-200: #334155;
    --slate-300: #475569;
    --slate-400: #94a3b8;
    --slate-500: #cbd5e1;
    --slate-600: #e2e8f0;
    --slate-700: #f1f5f9;
    --slate-800: #f8fafc;
    --slate-900: #f8fafc;
  }

  /* ---------- Body ---------- */
  body {
    background: #0c1220;
    color: #e2e8f0;
  }

  /* ---------- Navbar ---------- */
  .navbar {
    background: rgba(12, 18, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  }

  .navbar__brand-text {
    filter: invert(1) brightness(2);
  }

  .navbar__link:hover {
    background: rgba(30, 41, 59, 0.6);
  }

  /* ---------- Mega Dropdown ---------- */
  .mega-dropdown__inner {
    background: #111827;
    border-top-color: rgba(51, 65, 85, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .mega-dropdown__item:hover {
    background: rgba(30, 41, 59, 0.6);
  }

  .mega-dropdown__item-icon--sky {
    background: rgba(14, 165, 233, 0.12);
    color: var(--sky-400);
  }

  .mega-dropdown__item-icon--pink {
    background: rgba(236, 72, 153, 0.12);
    color: var(--pink-400);
  }

  .mega-dropdown__item-title {
    color: #f1f5f9;
  }

  .mega-dropdown__item-desc {
    color: #94a3b8;
  }

  .mega-overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  /* ---------- Buttons ---------- */
  .btn--ghost {
    color: #cbd5e1;
    border-color: rgba(51, 65, 85, 0.6);
  }

  .btn--ghost:hover {
    color: #f8fafc;
    background: rgba(30, 41, 59, 0.6);
  }

  .btn--cta-nav {
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
  }

  .btn--cta-nav:hover {
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.45);
  }

  .btn--cta {
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  }

  .btn--cta:hover {
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
  }

  .btn--cta-secondary {
    background: #f8fafc;
    color: #0f172a;
  }

  .btn--cta-secondary:hover {
    background: #e2e8f0;
    box-shadow: 0 6px 20px rgba(248, 250, 252, 0.15);
  }

  /* ---------- Hero ---------- */
  .hero {
    background: #0c1220;
  }

  .hero__title {
    color: #f8fafc;
  }

  .hero__subtitle {
    color: #94a3b8;
  }

  /* ---------- Features ---------- */
  .feature-card__icon {
    background: rgba(30, 41, 59, 0.8);
    color: #94a3b8;
  }

  .feature-card__title {
    color: #f1f5f9;
  }

  .feature-card__desc {
    color: #94a3b8;
  }

  /* ---------- Footer (dark) ---------- */
  .site-footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
  }

  /* Mobile toggle */
  .navbar__mobile-toggle span {
    background: #e2e8f0;
  }

  /* GOV pages: force light mode — never go dark */
  body.gov-page {
    background: #fafafa !important;
    color: #0f172a !important;
    color-scheme: only light;
  }

  body.gov-page .gov-bar {
    background: #fff !important;
    border-color: #e2e8f0 !important;
  }

  body.gov-page .gov-bar__logo {
    filter: none !important;
  }

  body.gov-page .gov-heading-xl,
  body.gov-page .gov-heading-l,
  body.gov-page .gov-heading-m {
    color: #0f172a !important;
  }

  body.gov-page .gov-body,
  body.gov-page .gov-list li {
    color: #475569 !important;
  }

  body.gov-page .gov-meta {
    color: #64748b !important;
    border-color: #e2e8f0 !important;
  }

  body.gov-page .gov-breadcrumb a {
    color: #0284c7 !important;
  }

  body.gov-page .gov-breadcrumb span {
    color: #64748b !important;
  }

  body.gov-page .gov-warning {
    background: #fefce8 !important;
    border-color: #eab308 !important;
    color: #854d0e !important;
  }

  body.gov-page .gov-danger {
    background: #fef2f2 !important;
    border-color: #ef4444 !important;
    color: #991b1b !important;
  }

  body.gov-page .gov-info {
    background: #eff6ff !important;
    border-color: #3b82f6 !important;
    color: #1e40af !important;
  }

  body.gov-page .gov-contact {
    background: #f8fafc !important;
    color: #334155 !important;
  }
}

/* ============================================================
   GOV-STYLE — text-first pages (Terms, Privacy)
   ============================================================ */

.gov-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
}

.gov-bar__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gov-bar__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.gov-bar__logo {
  height: 18px;
  object-fit: contain;
}

.gov-width {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gov-breadcrumb {
  padding: 1rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.gov-breadcrumb a {
  color: var(--sky-600, #0284c7);
  text-decoration: none;
}

.gov-breadcrumb a:hover {
  text-decoration: underline;
}

.gov-main {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.gov-heading-xl {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.gov-meta {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.gov-heading-l {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin: 2.25rem 0 0.75rem;
}

.gov-heading-m {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1.5rem 0 0.5rem;
}

.gov-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1rem;
}

.gov-list {
  margin: 0 0 1.5rem 1.25rem;
  padding: 0;
}

.gov-list li {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 0.35rem;
}

/* Callout boxes — GOV-style left border */
.gov-warning,
.gov-danger,
.gov-info {
  border-left: 4px solid;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  border-radius: 0 4px 4px 0;
}

.gov-warning {
  border-color: #eab308;
  background: #fefce8;
  color: #854d0e;
}

.gov-danger {
  border-color: #ef4444;
  background: #fef2f2;
  color: #991b1b;
}

.gov-info {
  border-color: #3b82f6;
  background: #eff6ff;
  color: #1e40af;
}

.gov-warning strong,
.gov-danger strong,
.gov-info strong {
  display: block;
  margin-bottom: 0.5rem;
}

.gov-warning ul,
.gov-danger ul,
.gov-info ul {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
}

.gov-warning li,
.gov-danger li,
.gov-info li {
  margin-bottom: 0.25rem;
}

.gov-contact {
  background: #f8fafc;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin-top: 0.75rem;
}

.gov-contact p {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #334155;
}

/* ============================================================
   SITE FOOTER — shared across all pages
   ============================================================ */

.site-footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 2rem 2rem 1.25rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.site-footer__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-footer__name {
  font-family: var(--font-family, 'Inter', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.01em;
}

.site-footer__inner {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  font-family: var(--font-family, 'Inter', sans-serif);
}

.site-footer__copy {
  font-weight: 600;
  color: #e2e8f0;
}

.site-footer__rights {
  flex: 1;
  text-align: center;
}

.site-footer__links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: #e2e8f0;
  text-decoration: underline;
}

.site-footer__sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__rights {
    text-align: center;
  }

  .gov-heading-xl {
    font-size: 1.75rem;
  }
}