/* ==========================================================================
   Akron Labs - Legal Pages Stylesheet
   Privacy Policy & Terms of Service
   ========================================================================== */

/* CSS Variables */
:root {
  --black: #0e0d0b;
  --charcoal: #1b1917;
  --graphite: #2c2926;
  --steel: #3e3a35;
  --pewter: #5c5750;
  --silver: #8e887f;
  --fog: #b9b3a9;
  --cloud: #e3ddd5;
  --white: #faf7f2;

  --copper: #C2844A;
  --copper-light: #D9A76A;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--fog);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

::selection {
  background: var(--copper);
  color: var(--black);
}

/* Grain Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  z-index: 10000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav {
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: center;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--graphite);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark::before {
  content: 'A';
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--black);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Content
   ========================================================================== */

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.last-updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--pewter);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--graphite);
}

.intro {
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro strong {
  color: var(--white);
}

h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--copper);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--copper), var(--copper-light));
  border-radius: 2px;
}

p {
  color: var(--silver);
  margin-bottom: 1rem;
  line-height: 1.8;
}

ul {
  color: var(--silver);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  line-height: 1.8;
}

li {
  margin-bottom: 0.5rem;
}

li::marker {
  color: var(--copper);
}

a {
  color: var(--copper);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--copper-light);
}

/* ==========================================================================
   Contact Info Box
   ========================================================================== */

.contact-info {
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.contact-info strong {
  color: var(--white);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  padding: 3rem 4rem;
  background: var(--black);
  border-top: 1px solid var(--graphite);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--pewter);
}

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

.copyright {
  font-size: 0.85rem;
  color: var(--pewter);
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */

@media (max-width: 768px) {
  nav {
    padding: 1.25rem 2rem;
  }

  .content {
    padding: 3rem 1.5rem 4rem;
  }

  h1 {
    font-size: 2rem;
  }

  footer {
    padding: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */

@media (max-width: 480px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .content {
    padding: 2.5rem 1.25rem 3rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.1rem;
    margin-top: 2.5rem;
  }

  .intro {
    font-size: 1rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  footer {
    padding: 1.5rem 1.25rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
