:root {
  --bg: #0e0f12;
  --surface: #17191e;
  --surface-2: #1e2128;
  --border: #2a2d36;
  --text: #f2f3f5;
  --muted: #9aa0ac;
  --accent: #6ee7b7;
  --accent-ink: #052e21;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 5vw, 4rem);
  background: rgba(14, 15, 18, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-logo {
  display: inline-flex;
}

.brand-logo svg {
  width: auto;
  height: 1.4rem;
  display: block;
}

.brand-name {
  color: var(--accent);
}

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

.site-nav a {
  color: var(--muted);
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--text);
}

/* Layout */
section {
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  max-width: 68rem;
  margin: 0 auto;
}

/* Hero */
.hero {
  text-align: center;
  padding-top: clamp(4rem, 12vw, 9rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.lede {
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px var(--accent);
}

/* Section headings */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 2rem;
  /*background: var(--surface);*/
  /*border: 1px solid var(--border);*/
  /*border-radius: 1.1rem;*/
}

.product-shot {
  display: block;
  width: calc(100% + 4rem);
  margin: -2rem -2rem 0.5rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
  /*border-bottom: 1px solid var(--border);*/
  /*border-radius: 1.1rem 1.1rem 0 0;*/
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-size: 1.3rem;
}

.product-card p {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
}

/* About */
.about-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.about-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.about-inner p {
  color: var(--muted);
  font-size: 1.1rem;
}

.about-inner strong {
  color: var(--text);
}

/* Contact */
.contact {
  text-align: center;
}

.contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.contact p {
  color: var(--muted);
  margin: 0 0 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.4rem 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 34rem) {
  .site-nav {
    display: none;
  }
}
