/* Global Styles */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background-color: rgba(22, 162, 73, 0.2);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  height: 40px;
  width: 40px;
  background-color: #16a249;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(22, 162, 73, 0.2);
}

.logo-icon svg {
  height: 24px;
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #16a249;
}

.nav-link {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #16a249;
}

/* Buttons */
.btn-primary {
  padding: 12px 32px;
  border-radius: 9999px;
  background-color: #16a249;
  color: white;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(22, 162, 73, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #128a3d;
}

.btn-primary:active {
  transform: scale(0.95);
}

/* Legal/Content Pages Layout */
.content-section {
  padding-top: 160px;
  padding-bottom: 128px;
  flex: 1;
}

.content-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: #0f172a;
}

.prose {
  max-width: none;
}

.last-updated {
  font-size: 20px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 32px;
}

.content-section-block {
  margin-bottom: 32px;
}

.section-title {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-text {
  color: #64748b;
  font-weight: 500;
  line-height: 1.6;
}

/* Footer Common */
footer {
  padding: 80px 0;
  border-top: 1px solid #e5e7eb;
  background-color: white;
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-copyright {
  font-size: 10px;
  font-weight: 900;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Footer Brand Shared */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  height: 32px;
  width: 32px;
  background-color: #16a249;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-logo-icon svg {
  height: 20px;
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #16a249;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 40px;
  }
}
