/* ========================================
   Cloud Cutters — Shared Base Styles
   Page-specific styles live in each HTML
   file's <style> block with namespaces:
     Homepage:    h-
     Methodology: m-
   ======================================== */

/* --- Reset & Base --- */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #0f0f0f;
  color: #e0e0e0;
  line-height: 1.6;
}

a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ffffff;
}

/* --- Layout --- */

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

/* --- Header --- */

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #1a1a1a;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.logo img {
  height: 28px;
  width: auto;
}

.site-header nav {
  display: flex;
  gap: 24px;
}

.site-header nav a {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: #a0a0a0;
}

.site-header nav a:hover {
  color: #ffffff;
}

/* --- Shared CTA button --- */

.cta {
  display: inline-block;
  padding: 16px 36px;
  background-color: rgba(229, 9, 20, 1);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  text-decoration: none;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.25);
  color: #ffffff;
}

/* --- Footer --- */

.site-footer {
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  font-size: 14px;
  color: #666;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer nav a {
  font-size: 14px;
  color: #666;
}

.site-footer nav a:hover {
  color: #a0a0a0;
}

/* --- Responsive (shared) --- */

@media (max-width: 768px) {
  .site-header nav {
    gap: 16px;
  }

  .site-header nav a {
    font-size: 13px;
  }
}
