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

html {
  scroll-behavior: smooth;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font: inherit;
}

body {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  line-height: 1.7;
  background: #0e0e0e;
  color: #e8e8e8;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 38px;
  line-height: 1.15;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-size: 14px;
  color: #888;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: #e8e8e8;
}

footer {
  padding: 2rem 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
footer span {
  font-size: 13px;
  color: #555;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: #e8e8e8;
  color: #0e0e0e;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.15s;
}
.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: transparent;
  color: #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s;
}
.btn-secondary:hover {
  background: #1e1e1e;
}

.service-card {
  background: #161616;
  border-radius: 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
}
.service-card .service-icon {
  font-size: 20px;
  color: #888;
  margin-bottom: 12px;
}
.service-card .service-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.service-card .service-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.contact-card {
  background: #161616;
  border-radius: 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card .contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #888;
  transition: color 0.15s;
}
.contact-card .contact-row:hover {
  color: #e8e8e8;
}
.contact-card .contact-row i {
  font-size: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 99px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  color: #888;
}
.tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #639922;
}

.pill {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 99px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  color: #888;
}

.hero {
  padding: 4rem 0 3rem;
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero .hero-sub {
  font-size: 16px;
  color: #888;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

section {
  padding: 3rem 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/*# sourceMappingURL=style.css.map */
