:root {
  color-scheme: dark;
}

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

body {
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 3rem 1.5rem 1.5rem;
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.header-logo {
  height: 7.5rem;
  width: auto;
}

header h1 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

header h1 span {
  color: #33568b;
}

.subtitle {
  color: #888;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero {
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1px solid #2a3a5a;
  border-radius: 8px;
  background: rgba(51, 86, 139, 0.12);
  color: #f0f0f0;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.cta-btn:hover {
  border-color: #33568b;
  background: rgba(51, 86, 139, 0.22);
}

.about h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.about p,
.product p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.capabilities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
}

.capabilities li {
  color: #ccc;
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.capabilities li::before {
  content: '\2022';
  color: #33568b;
  position: absolute;
  left: 0;
}

.product h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.contact {
  text-align: center;
}

.contact h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  background: #141414;
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
}

.contact-link:hover {
  border-color: #33568b;
  background: #0d1520;
}

.contact-label {
  color: #888;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.2rem;
}

.etsy-icon {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: #666;
  font-size: 0.85rem;
}
