/* SkyeSysHQ shared site styles */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% 0%, #1c2230 0%, #0c0e13 60%);
  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
a { color: inherit; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(12, 14, 19, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #1c2029;
  flex-wrap: wrap;
  gap: 10px;
}
.navbar .brand {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6ea0ff;
  text-decoration: none;
  font-weight: 700;
}
.navbar nav a {
  color: #b0b3b8;
  text-decoration: none;
  font-size: 14px;
  margin-left: 22px;
  transition: color 0.15s ease;
}
.navbar nav a:hover,
.navbar nav a.active {
  color: #6ea0ff;
}

/* Generic section/page-header layout */
.section {
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 24px;
}
.page-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 24px 24px;
  text-align: center;
}
.page-header h1 {
  font-size: 38px;
  margin: 0 0 16px 0;
  font-weight: 700;
}
.page-header p.subhead {
  font-size: 16px;
  color: #b0b3b8;
  line-height: 1.7;
  margin: 0;
}

/* Hero (home page only) */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.hero .wrap { max-width: 580px; }
.brand-mark {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #6ea0ff;
  margin-bottom: 18px;
}
h1 {
  font-size: 44px;
  margin: 0 0 18px 0;
  font-weight: 700;
  line-height: 1.15;
}
h1 span { color: #6ea0ff; }
p.tagline {
  font-size: 18px;
  color: #e8e8e8;
  line-height: 1.6;
  margin: 0 0 14px 0;
  font-weight: 600;
}
p.subhead {
  font-size: 16px;
  color: #b0b3b8;
  line-height: 1.7;
  margin: 0 0 34px 0;
}
.cta {
  display: inline-block;
  padding: 13px 28px;
  background: #6ea0ff;
  color: #0c0e13;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  transition: background 0.15s ease;
  border: none;
  cursor: pointer;
}
.cta:hover { background: #8fb4ff; }
.cta.secondary {
  background: transparent;
  border: 1px solid #383c44;
  color: #e8e8e8;
}
.cta.secondary:hover { border-color: #6ea0ff; color: #6ea0ff; background: transparent; }
.badge {
  display: inline-block;
  margin-top: 30px;
  padding: 8px 18px;
  border: 1px solid #383c44;
  border-radius: 999px;
  font-size: 13px;
  color: #6a6d75;
  letter-spacing: 1px;
}
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #2d4a2f;
  border-radius: 999px;
  font-size: 12px;
  color: #7fd08a;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Section headings */
.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6ea0ff;
  margin-bottom: 12px;
  text-align: center;
}
h2 {
  font-size: 30px;
  margin: 0 0 44px 0;
  text-align: center;
  font-weight: 700;
}
h2.tight { margin-bottom: 20px; }
h3 { font-size: 17px; margin: 0 0 10px 0; color: #e8e8e8; font-weight: 700; }

/* Grid / cards */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  background: #171b26;
  border: 1px solid #262b38;
  border-radius: 12px;
  padding: 28px;
}
.card p { font-size: 15px; color: #b0b3b8; line-height: 1.65; margin: 0; }
.card p + p { margin-top: 10px; }

/* Steps (services page) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.step {
  text-align: center;
  padding: 20px;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #6ea0ff;
  color: #6ea0ff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.step p { font-size: 14px; color: #b0b3b8; line-height: 1.6; margin: 0; }

/* Body copy (about, generic prose) */
.prose p {
  font-size: 17px;
  color: #c5c8cd;
  line-height: 1.75;
  text-align: left;
  max-width: 680px;
  margin: 0 auto 20px auto;
}
.prose { text-align: center; }

/* Portfolio */
.portfolio-entry {
  background: #171b26;
  border: 1px solid #262b38;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 24px;
}
.portfolio-entry h3 { font-size: 19px; margin-bottom: 8px; }
.portfolio-entry p { font-size: 15px; color: #b0b3b8; line-height: 1.7; margin: 0 0 10px 0; }

/* Build log */
.post {
  border-bottom: 1px solid #1c2029;
  padding: 34px 0;
}
.post:first-of-type { padding-top: 0; }
.post:last-of-type { border-bottom: none; }
.post .date {
  font-size: 13px;
  color: #6a6d75;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.post h3 { font-size: 21px; margin-bottom: 12px; }
.post p { font-size: 15.5px; color: #c0c3c9; line-height: 1.75; margin: 0 0 12px 0; }
.post code {
  background: #171b26;
  border: 1px solid #262b38;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 14px;
  color: #a8c8ff;
}

/* Contact form */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.contact-form label {
  display: block;
  font-size: 13px;
  color: #b0b3b8;
  margin: 0 0 6px 0;
  letter-spacing: 0.5px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  background: #171b26;
  border: 1px solid #262b38;
  border-radius: 8px;
  color: #e8e8e8;
  font-family: inherit;
  font-size: 15px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6ea0ff;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .cta { width: 100%; text-align: center; }
.email-line {
  margin-top: 26px;
  font-size: 14px;
  color: #6a6d75;
  text-align: center;
}
.email-line a { color: #6ea0ff; text-decoration: none; }

footer {
  text-align: center;
  padding: 40px 24px 56px 24px;
  font-size: 12px;
  color: #4a4d55;
  border-top: 1px solid #1c2029;
}
footer .footer-links { margin-bottom: 14px; }
footer .footer-links a {
  color: #6a6d75;
  text-decoration: none;
  font-size: 12px;
  margin: 0 10px;
}
footer .footer-links a:hover { color: #6ea0ff; }

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  .page-header h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .section { padding: 64px 20px; }
  .navbar nav a { margin-left: 14px; font-size: 13px; }
}
