
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --bg: #060811;
  --panel: rgba(12, 15, 25, 0.78);
  --card: rgba(16, 19, 29, 0.88);
  --text: #eef1f7;
  --muted: #a7b5c9;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #53e3c7;
  --accent-2: #f3c27b;
  --shadow: 0 18px 48px rgba(5, 7, 13, 0.42);
  --glow: 0 12px 40px rgba(83, 227, 199, 0.18);
}

* { box-sizing: border-box; }

body.dark {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(160deg, #0a0d18 0%, #070a14 50%, var(--bg) 100%);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body.dark::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 16, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

nav a {
  color: var(--muted);
  margin-left: 24px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  height: 72vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 7, 13, 0.85) 22%, rgba(5, 7, 13, 0.6) 100%);
  backdrop-filter: blur(6px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 40px 0;
  animation: fadeUp 1.4s ease;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(77, 224, 198, 0.12);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(77, 224, 198, 0.18);
}

.hero h1 {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 12px;
  line-height: 1.1;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #4de0c6 0%, #5ff2d9 50%, #f5b76b 100%);
  color: #052526;
  box-shadow: var(--glow);
}

.btn.ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(77, 224, 198, 0.15);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid var(--border);
  font-weight: 600;
}

.pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent-2);
}

.products {
  padding: 90px 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-top h2 {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  margin: 6px 0 0;
}

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

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(77, 224, 198, 0.35);
  box-shadow: var(--glow);
}

.image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(77, 224, 198, 0.06), transparent 45%), #0b0f18;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .image-frame img { transform: scale(1.04); }

.chip {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.7);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
}

.chip-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(77, 224, 198, 0.12);
  color: var(--accent);
  border: 1px solid rgba(77, 224, 198, 0.25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.card-body p {
  margin: 0 0 14px;
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-weight: 800;
  font-size: 18px;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.collections {
  padding: 80px 0 30px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(5, 7, 13, 0.8) 0%, rgba(5, 7, 13, 0.35) 100%);
  z-index: 1;
}

.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 224, 198, 0.4);
  box-shadow: var(--glow);
}

.collection-card.large {
  min-height: 320px;
  grid-column: span 2;
}

.collection-card .content {
  position: relative;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.collection-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.collection-title {
  font-family: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  font-size: 24px;
  margin: 10px 0 8px;
}

.collection-desc {
  margin: 0;
  color: var(--muted);
}

.assurance {
  padding: 40px 0 90px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.assurance-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.assurance-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(77, 224, 198, 0.16), rgba(245, 183, 107, 0.12));
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--accent);
}

.assurance-icon svg {
  width: 20px;
  height: 20px;
}

.assurance-card h4 {
  margin: 0 0 8px;
}

.assurance-card p {
  margin: 0;
  color: var(--muted);
}

footer {
  text-align: center;
  padding: 26px 0 40px;
  background: rgba(8, 10, 16, 0.8);
  border-top: 1px solid var(--border);
  color: var(--muted);
  margin-top: 80px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-wrap nav {
  display: flex;
  gap: 12px;
}

.footer-wrap a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-wrap a:hover,
.footer-wrap a:focus-visible {
  color: var(--accent);
}

@keyframes fadeUp { from{opacity:0; transform:translateY(24px);} to{opacity:1; transform:translateY(0);} }

@media (max-width: 820px) {
  header { position: sticky; }
  .header-wrap { padding: 14px 0; position: relative; }
  nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    background: rgba(7, 9, 16, 0.94);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 18px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
    max-height: 80vh;
    overflow-y: auto;
  }
  nav.open { display: flex; }
  nav a { margin-left: 0; padding: 8px 6px; }
  .menu-toggle { display: inline-flex; flex-direction: column; }
  .hero { height: auto; padding: 48px 0 32px; }
  .hero-content { padding: 0; }
  .section-top { flex-direction: column; align-items: flex-start; }
  .collection-card.large { grid-column: span 1; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
