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

:root {
  --bg: #131313;
  --text: #fff;
  --accent: #00ff04;
  --muted: #fff;        /* CHANGED: was #888 (grey). Now white, so all "muted" text shows white. Set back to #888 to restore grey. */
  --card-bg: #1c1c1c;
  --border: #2a2a2a;
  --radius: 6px;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  line-height: 1.6;
}

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

img { display: block; max-width: 100%; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  flex-direction: column;   /* stack top-to-bottom: logo, then links */
  align-items: center;      /* center everything horizontally */
  gap: 16px;                /* space between the logo and the links */
  padding: 16px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  justify-content: center;  /* center the row of links */
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 1px;
  transition: color 0.2s, text-decoration-color 0.2s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.nav-links a:hover, .nav-links a.active { text-decoration-color: currentColor; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  padding: 100px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 4px;
  text-transform: none;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--accent); }

.hero p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: inherit;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 2px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--accent); color: #000; }

.btn-solid {
  background: var(--accent);
  color: #000;
  font-weight: bold;
}

.btn-solid:hover { background: #00cc03; border-color: #00cc03; }

.btn-ghost { border-color: var(--border); color: var(--muted); }
.btn-ghost:hover { border-color: var(--text); color: var(--text); background: none; }

/* ── Section ── */
section { padding: 64px 0; }
section + section { border-top: 1px solid var(--border); }

.section-label {
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.product-card-img {
  aspect-ratio: 1;
  background: #222;
  overflow: hidden;
}

.product-card-img img { width: 100%; height: 100%; object-fit: cover; }

.product-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);   /* CHANGED: was var(--border) (dark grey). Now white. */
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.product-card-body { padding: 16px; }

.product-card-body h3 {
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-body .price {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* ── About strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-strip img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #222;
}

.about-strip .about-text p { color: var(--muted); margin-bottom: 24px; line-height: 1.8; }

/* ── Product Page ── */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}

.product-page-media img, .product-page-media .img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: #1c1c1c;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.product-page-info h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-page-info .tagline {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.product-page-info .price {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 24px;
}

.product-page-info .price small { font-size: 0.75rem; color: #ffffff; }

.product-page-info .btn { margin-bottom: 32px; }

.product-page-info .description { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

/* ── Accordion ── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.accordion-item + .accordion-item { border-top: 1px solid var(--border); }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 1px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.accordion-trigger:hover { background: #1c1c1c; }

.accordion-trigger .chevron { transition: transform 0.2s; font-size: 0.7rem; }
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.accordion-body.open { display: block; }

.accordion-body ul { list-style: none; }
.accordion-body ul li::before { content: "— "; color: var(--accent); }

/* ── Video ── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 40px 0;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  list-style: none;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;       /* space below the copyright line */
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

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

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

footer p { color: var(--muted); font-size: 0.75rem; }

/* ── About page ── */
.about-page { max-width: 700px; margin: 0 auto; padding: 64px 20px; }
.about-page h1 { font-size: 2rem; text-transform: capitalize; letter-spacing: 3px; margin-bottom: 32px; }
.about-page p { color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.about-page .highlight { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
  }

  .about-strip { grid-template-columns: 1fr; }
  .about-strip img { display: none; }

  .product-page {
    grid-template-columns: 1fr;
    padding: 32px 0;
  }

  .hero { padding: 64px 20px; }
}
