:root {
  --bg: #0b0d12;
  --surface: #141823;
  --surface-2: #1b2230;
  --ink: #f5f7fb;
  --muted: #9aa3b2;
  --accent: #c7ff2e;
  --accent-2: #ff7a2f;
  --line: rgba(245, 247, 251, 0.12);
  --shadow: 0 30px 60px rgba(5, 6, 8, 0.45);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Chivo", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, rgba(199, 255, 46, 0.12), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(255, 122, 47, 0.14), transparent 45%),
    var(--bg);
  line-height: 1.7;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 13, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199, 255, 46, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #0b0d12;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-text {
  display: grid;
}

.brand-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(199, 255, 46, 0.5);
  color: var(--accent);
}

.hero {
  padding: 120px 0 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin: 12px 0 20px;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0b0d12;
  box-shadow: 0 18px 40px rgba(199, 255, 46, 0.35);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--accent);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-12deg) rotateX(6deg);
  transition: transform 0.4s ease;
}

.hero-frame:hover {
  transform: perspective(900px) rotateY(-6deg) rotateX(3deg) translateY(-6px);
}

.hero-frame img {
  height: 420px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent-2);
  color: #0b0d12;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-cards {
  display: grid;
  gap: 12px;
}

.hero-card {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(199, 255, 46, 0.12);
}

.hero-card.alt {
  border-color: rgba(255, 122, 47, 0.3);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(199, 255, 46, 0.2);
  border-bottom: 1px solid rgba(199, 255, 46, 0.2);
  background: #0f121a;
}

.ticker-track {
  display: flex;
  gap: 40px;
  padding: 16px 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  animation: ticker 18s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 560px;
  display: grid;
  gap: 10px;
}

.section-head h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.categories {
  background: #0f121a;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.category-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(199, 255, 46, 0.16);
  box-shadow: 0 16px 40px rgba(5, 6, 8, 0.3);
}

.drop {
  background: var(--surface-2);
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.drop-image img {
  border-radius: var(--radius-lg);
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.drop-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  margin: 10px 0 12px;
}

.drop-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  color: var(--muted);
}

.drop-list li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.drop-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

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

.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(5, 6, 8, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(5, 6, 8, 0.45);
}

.product-media {
  position: relative;
  background: #0f121a;
  padding: 24px;
}

.product-media img {
  height: 200px;
  object-fit: contain;
}

.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #0b0d12;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px 24px;
}

.product-info h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
}

.lookbook {
  background: #0f121a;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.lookbook-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lookbook-card img {
  height: 240px;
  object-fit: cover;
}

.lookbook-card div {
  padding: 20px;
}

.cta {
  background: var(--surface-2);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 36px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0d12;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.demo-flag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(199, 255, 46, 0.16);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .drop-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame img,
  .drop-image img {
    height: 360px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
