@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050609;
  --panel: #0b0d12;
  --text: #f5f5f7;
  --muted: #a9abb5;
  --purple: #7c3aed;
  --purple2: #a855f7;
  --line: #242630;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(5,6,9,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo { font-weight: 800; letter-spacing: .13em; font-size: 14px; }
.logo span { color: var(--purple2); }
nav { display: flex; gap: 28px; }
nav a { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: #ddd; }
nav a:hover { color: #fff; }
.menu-btn { display: none; background: none; border: 0; color: #fff; font-size: 25px; }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  padding: 80px 8vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 50%, rgba(124,58,237,.20), transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(168,85,247,.09), transparent 25%);
}
.hero-copy { max-width: 700px; }
.eyebrow { color: var(--purple2); font-weight: 800; letter-spacing: .22em; font-size: 12px; }
h1, h2 { font-family: Anton, Impact, sans-serif; letter-spacing: .025em; line-height: .92; margin: 15px 0 25px; }
h1 { font-size: clamp(64px, 10vw, 150px); }
h2 { font-size: clamp(42px, 6vw, 78px); }
em { color: var(--purple2); font-style: normal; }
.hero-text { max-width: 600px; color: var(--muted); line-height: 1.8; font-size: 17px; }
.btn, .product-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 15px 22px;
  background: var(--purple);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  border: 1px solid #a855f7;
  transition: .2s ease;
}
.btn:hover, .product-btn:hover { transform: translateY(-2px); background: var(--purple2); }
.hero-mark {
  justify-self: center;
  font-size: clamp(130px, 25vw, 320px);
  filter: drop-shadow(0 0 50px rgba(168,85,247,.25));
}

.section { padding: 100px 7vw; }
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading p:last-child, .contact > p { color: var(--muted); }
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1250px; margin: auto; }
.product {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.product img { display: block; width: 100%; height: auto; }
.product-info { padding: 25px; }
.tag { font-size: 10px; letter-spacing: .18em; color: var(--purple2); font-weight: 800; }
h3 { font-size: 23px; margin: 9px 0; }
.product-info p { color: var(--muted); line-height: 1.7; min-height: 75px; }

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.story > p { color: var(--muted); font-size: 18px; line-height: 1.9; }

.statement {
  padding: 100px 7vw;
  text-align: center;
  background: linear-gradient(135deg, #0a0710, #090b10);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement p { font-family: Anton, Impact, sans-serif; font-size: clamp(35px, 6vw, 75px); margin: 0; }

.contact { text-align: center; }
.contact .btn { margin-bottom: 15px; }
.small { font-size: 11px; color: #666 !important; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 7vw;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 12px;
}

@media (max-width: 760px) {
  .menu-btn { display: block; }
  nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 65px;
    padding: 20px;
    background: #07080c;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }
  nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-mark { margin-top: 35px; }
  .products, .story { grid-template-columns: 1fr; }
  .story { gap: 20px; }
  footer { flex-direction: column; }
}
