:root {
  --foreground: #fff;
  --primary: #fff;
  --highlight: #000;
  --accent: #fff;
  --accent-hover: #fff;
  --text-muted: #fff;
  --text-muted-dark: #fff;
  --background-overlay: rgba(16, 15, 15, 0.4);
  --border-light: rgba(255, 255, 255, 0.3);
  --shadow-light: rgba(0, 0, 0, 0.25);
  --shadow-focus: rgba(255, 255, 255, 0.6);
}

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


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

/* Prevent double-tap zoom on controls */
button, a, input, textarea, select {
  touch-action: manipulation;
}

/* Control tap highlight color */
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

html, body {
  height: 100%;
  /* Control overscroll behavior */
  overscroll-behavior: contain;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  position: relative;
  min-height: 100vh;
  letter-spacing: -0.01em;
  font-size: 18px;
  padding-top: 0;
  background-color: #000;
  /* Typography improvements */
  font-variant-numeric: tabular-nums;
}


/* removed site-header; home matches legal pages */

.hero, .hero-content, footer {
  position: relative;
  z-index: 1;
}

/* Shared logo header */
.logo-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-align: left;
  margin: 0 0 16px 0;
  padding: 16px 32px;
}

.logo-header a {
  display: inline-block;
  transition: opacity 0.2s;
}

.logo-header a:hover, .logo-header a:focus-visible {
  opacity: 0.8;
  outline: none;
  box-shadow: none;
}

.logo-header img {
  height: 40px;
  width: auto;
  max-width: 200px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 60vh;
  padding-top: 20px;
  background: transparent !important;
  position: relative;
}

.hero-content {
  text-align: left;
  max-width: 800px;
  margin: 0 0 16px 0;
  padding: 0 32px 16px 32px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.13;
  text-align: left;
}

.hero-title strong {
  font-weight: 800;
}

.title-link {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
}

.title-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.title-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--shadow-focus);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.4;
}

.mobile-break {
  display: none;
}



footer {
  text-align: left;
  color: var(--text-muted);
  font-size: 12px;
  padding: 16px 32px 12px 32px;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  margin-top: 16px;
  position: relative;
  z-index: 1;
  box-shadow: none !important;
  border: none !important;
  display: flex;
  justify-content: flex-start;
}



.footer-links {
  margin: 8px 0 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  overflow-x: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.footer-links::-webkit-scrollbar { display: none; }

.footer-links a,
.footer-copyright,
.footer-proudly {
  color: #fff;
  text-decoration: none !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
  display: block;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.footer-links a:hover {
  color: #fff;
  border-bottom: 1.5px solid #fff;
  text-decoration: none !important;
  /* Increased contrast on hover */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-links a:focus-visible {
  text-decoration: none !important;
}

.footer-links a:focus {
  outline: none;
}


.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  z-index: 1000;
  border-radius: 6px;
  font-weight: 600;
  transition: left 0.2s;
}

.skip-link:focus {
  left: 16px;
  outline: 2px solid #fff;
}

/* Enhanced focus management */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
textarea:focus-visible, 
select:focus-visible,
.footer-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--shadow-focus);
  border-radius: 2px;
}

a:focus:not(:focus-visible), 
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible),
.footer-links a:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Focus within for grouped controls */
.hero-cta:focus-within {
  box-shadow: 0 0 0 2px var(--shadow-focus);
  border-radius: 8px;
}



@media (max-width: 768px) {
  body { 
    min-height: 100vh;
    background-color: #000;
    margin: 0;
    padding: 0;
  }
  
  html {
    min-height: 100%;
    margin: 0;
    padding: 0;
  }
  
  footer {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    margin: 0;
    box-shadow: none !important;
    border: none !important;
  }
  

}

@media (max-width: 600px) {
  main { 
    padding: 16px 16px 0 16px; 
  }
  
  .logo-header {
    padding: 16px;
  }
  
  .hero-content { 
    padding: 0 16px 12px 16px; 
  }
  
  section { 
    padding: 0 8px; 
  }
  
  h1 { 
    font-size: 1.4rem; 
    line-height: 1.1; 
  }
  
  h2 { 
    font-size: 1.4rem; 
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-top: 12px;
  }

  .mobile-break {
    display: inline;
  }

  /* removed navbar padding for minimalism */




  .footer-links {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    overflow: visible;
  }
  
  footer {
    padding: 16px;
    display: flex;
    justify-content: flex-start;
  }
  
  .footer-links a {
    font-size: 12px;
    white-space: nowrap;
    text-align: left;
    align-self: flex-start;
  }
  

  footer {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
  }
}

body.error-page {
  background: #100F0F !important;
  background-image: none !important;
  background-attachment: initial !important;
}

body.error-page::before {
  display: none;
}

.error-page .navbar { display: none; }

.error-page main {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 16px 0 16px;
  text-align: center;
}

.error-page h1 {
  font-size: 8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.error-page p {
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* .error-code removed (no longer used) */

.cta-link {
  display: inline;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  margin-bottom: 40px;
}

.cta-link:hover {
  color: #fff;
  border-bottom-color: #fff;
  text-decoration: none;
  /* Increased contrast on hover */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.cta-link:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
  text-decoration: none;
  outline: none;
  box-shadow: 0 0 0 2px var(--shadow-focus);
  border-radius: 2px;
}

.cta-link:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

@media (max-width: 600px) {
  .error-page h1 {
    font-size: 4rem;
  }
  
  .error-page p {
    font-size: 1rem;
  }
  
  .cta-link {
    font-size: 1rem;
  }
}

body.legal-page {
  background: #000 !important;
  background-image: none !important;
  background-size: initial !important;
  background-position: initial !important;
  background-repeat: initial !important;
  background-attachment: initial !important;
  font-size: 16px;
}

body.legal-page::before {
  display: none !important;
}

.legal-page .navbar { display: none; }

.legal-page main {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 16px 0 16px;
}

.legal-page h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
  letter-spacing: -0.02em;
  color: #fff;
}

.legal-page h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: #fff;
}

.legal-page h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: #fff;
}

.legal-page h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: #fff;
}

.legal-page h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: #fff;
}

.legal-page h6 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: #fff;
}

.legal-page p, .legal-page li {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
}

.legal-page ol, .legal-page ul {
  margin-bottom: 18px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-page a:hover, .legal-page a:focus-visible {
  color: #fff;
  text-decoration: underline;
}


/* Breadcrumb styles removed (unused) */



@media (max-width: 600px) {
  .legal-page main { 
    padding: 32px 8px 0 8px; 
  }
  
  .legal-page h1 { 
    font-size: 1.8rem; 
    line-height: 1.2; 
  }
  
  .legal-page h2 { 
    font-size: 1.4rem; 
    line-height: 1.3; 
  }
  
  .legal-page h3 { 
    font-size: 1.2rem; 
    line-height: 1.3; 
  }
  
  .legal-page h4 { 
    font-size: 1.1rem; 
    line-height: 1.3; 
  }
  
  .legal-page h5 { 
    font-size: 1rem; 
    line-height: 1.3; 
  }
  
  .legal-page h6 { 
    font-size: 0.9rem; 
    line-height: 1.3; 
  }
  
  .legal-page p, .legal-page li { 
    font-size: 14px; 
    line-height: 1.6; 
  }


}

.leading-trim-both {
  font-family: 'Inter', sans-serif;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(0.1em);
}

/* Removed unused leading-trim and font-inter utility classes */
