/* ── Guaardvark Landing Pages — Shared Styles ── */

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: #000;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #fff;
}

/* ── Site Header / Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-nav-logo img {
  width: 32px;
  height: 32px;
}

.site-nav-logo span {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.site-nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-nav-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  padding: 100px 32px 0;
  max-width: 900px;
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumbs a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs span {
  margin: 0 8px;
}

/* ── Page Hero ── */
.page-hero {
  padding: 48px 32px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  display: block;
}

.page-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: clamp(24px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.page-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  margin: 0 auto;
}

.page-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 48px auto;
}

/* ── Content Sections ── */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.content-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2.5vw, 24px);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.content-section h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  margin-top: 32px;
}

.content-section p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
  margin: 0 0 24px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.content-section li {
  margin-bottom: 8px;
}

.content-section strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.content-section code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.content-section pre {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 24px;
  overflow-x: auto;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.6;
}

.content-section pre code {
  background: none;
  padding: 0;
}

/* ── Feature Highlight Cards ── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.highlight-card {
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.highlight-card h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ── Screenshot Container ── */
.screenshot-container {
  max-width: 800px;
  margin: 32px auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.03);
}

.screenshot-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Specs / Stats Row ── */
.specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  text-align: center;
}

.spec-item {
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.spec-value {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.spec-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── CTA Section ── */
.cta-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 32px 80px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2.5vw, 24px);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ── Related Pages ── */
.related-pages {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.related-pages h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: block;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.related-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.related-card-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.related-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 64px 24px 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Mobile Hamburger Menu ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav {
    padding: 12px 20px;
  }

  .site-nav-links {
    gap: 16px;
  }

  .breadcrumbs {
    padding: 80px 20px 0;
  }

  .page-hero {
    padding: 32px 20px 48px;
  }

  .page-title {
    letter-spacing: 4px;
  }

  .content-section {
    padding: 0 20px 48px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .specs-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-section {
    padding: 32px 20px 48px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hamburger {
    display: block;
  }

  .site-nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav-links.open {
    transform: translateX(0);
  }

  .site-nav-links a {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
