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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Links - text links color */
a:not(.button):not(.button-primary):not(.button-secondary) {
  color: #33A1CB;
}

a:not(.button):not(.button-primary):not(.button-secondary):visited {
  color: #33A1CB;
}

/* Layout */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header & nav */
.site-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.logo:visited {
  color: inherit;
}

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

.logo-title {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #111827;
}

.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: #33A1CB;
}

.nav a:visited {
  color: #33A1CB;
}

.nav a:hover {
  color: #33A1CB;
}

/* Hero */
.hero {
  padding: 2rem 0 2.5rem;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.button-primary {
  background-color: #33A1CB;
  color: #ffffff;
}

.button-primary:visited {
  color: #ffffff;
}

.button-primary:hover {
  background-color: #2a8fb3;
}

.button-secondary {
  background-color: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.button-secondary:visited {
  color: #111827;
}

.button-secondary:hover {
  background-color: #f9fafb;
}

/* Sections */
.section {
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-description {
  font-size: 0.98rem;
  color: #4b5563;
}

/* Grid */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards */
.card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  background-color: #ffffff;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.card-body {
  font-size: 0.94rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.card-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Lists */
ul {
  padding-left: 1.1rem;
}

ul li + li {
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.site-footer a {
  color: #33A1CB;
  text-decoration: none;
}

.site-footer a:visited {
  color: #33A1CB;
}

.site-footer a:hover {
  color: #33A1CB;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }
}
