:root {
  --bg: #090909;
  --surface: #131313;
  --surface-alt: #1a1a1a;
  --text: #f3f3f3;
  --muted: #b5b5b5;
  --accent: #ff8b00;
  --accent-soft: rgba(255, 139, 0, 0.2);
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 139, 0, 0.1), transparent 35%),
    radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.06), transparent 40%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: linear-gradient(transparent 96%, rgba(255, 255, 255, 0.02) 100%);
  background-size: 100% 3px;
  opacity: 0.35;
  z-index: -1;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-mark {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 0.45rem;
  font-family: "Teko", sans-serif;
  color: var(--accent);
}

.brand-text {
  font-family: "Teko", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(255, 139, 0, 0.35);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 0.45rem;
  padding: 0.35rem 0.55rem;
}

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

.nav-links a {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--border);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

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

.hero {
  --portrait-shift-mobile: 0.15rem;
  --portrait-shift-desktop: 0.9rem;
  position: relative;
  min-height: 75vh;
  padding: 0.25rem 1rem 2rem;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr;
  gap: 1rem;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.88)),
    url("backgroundImage.jpg") center 22% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 139, 0, 0.12), transparent 34%),
    linear-gradient(140deg, rgba(0, 0, 0, 0.72), transparent 55%);
}

.hero-social-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.7rem;
  padding: 5.2rem 1rem 1rem;
}

.hero-social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
  animation: socialFloat 7s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-social-chip:hover {
  background: rgba(20, 20, 20, 0.72);
  border-color: rgba(255, 139, 0, 0.6);
  transform: translateY(-4px);
}

.hero-social-chip svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero-social-chip span {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.youtube-chip {
  color: #ff5c5c;
  margin-left: 0.4rem;
}

.insta-chip {
  color: #f8a64b;
  margin-left: 2rem;
  animation-delay: 0.9s;
}

.facebook-chip {
  color: #76b2ff;
  margin-left: 1rem;
  animation-delay: 1.8s;
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  right: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.stat-card {
  padding: 0.55rem 0.85rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  text-align: center;
  animation: statPulse 8s ease-in-out infinite;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.views-card {
  animation-delay: 0s;
}

.followers-card {
  animation-delay: 0.8s;
}

.community-card {
  animation-delay: 1.6s;
}

@keyframes statPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  max-width: 42rem;
  z-index: 2;
}

.hero-name {
  margin: 0 0 0.4rem;
  font-family: "Teko", sans-serif;
  font-size: clamp(2.3rem, 7.5vw, 4.8rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 24px rgba(255, 139, 0, 0.4),
    0 0 6px rgba(255, 255, 255, 0.2);
}

.hero-name::after {
  content: "";
  display: block;
  width: min(13rem, 62%);
  height: 0.22rem;
  margin-top: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 139, 0, 0.08));
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 2.78rem;
  margin-bottom: 0.35rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  margin-bottom: 0.8rem;
}

.hero-portrait-wrap {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-portrait-wrap::before {
  content: "";
  position: absolute;
  width: min(84vw, 470px);
  height: min(84vw, 470px);
  bottom: -1.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 54%),
    radial-gradient(circle at 54% 50%, rgba(255, 139, 0, 0.22), rgba(255, 139, 0, 0) 64%);
  filter: blur(12px);
  opacity: 0.44;
  z-index: 0;
}

.hero-portrait-wrap::after {
  content: "";
  position: absolute;
  width: min(82vw, 452px);
  height: min(82vw, 452px);
  bottom: -0.6rem;
  border-radius: 48% 52% 45% 55% / 50% 47% 53% 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  filter: blur(4px);
  mix-blend-mode: screen;
  opacity: 0.24;
  z-index: 1;
  pointer-events: none;
}

.hero-portrait-glow {
  position: absolute;
  bottom: -2rem;
  width: min(85vw, 430px);
  height: min(85vw, 430px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 139, 0, 0.45), rgba(255, 139, 0, 0.05) 58%, transparent 72%);
  filter: blur(30px);
  opacity: 0.72;
}

.hero-portrait {
  position: relative;
  width: min(95vw, 600px);
  height: auto;
  transform: translate(var(--portrait-shift-mobile), 1.15rem);
  isolation: isolate;
  opacity: 0.92;
  filter:
    saturate(1.03)
    contrast(1.04)
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.56))
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.72));
}

.cta-group {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #101010;
  box-shadow: 0 10px 28px rgba(255, 139, 0, 0.28);
}

.btn-outline {
  border: 1px solid var(--text);
}

.btn-small {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
}

.hero-motion-ring {
  position: absolute;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(255, 139, 0, 0.4);
  border-radius: 50%;
  right: -5rem;
  bottom: -6rem;
  animation: drift 8s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
  }
}

.section,
.page-main {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  margin-top: 2.8rem;
  padding: 1.2rem 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.video-grid,
.product-preview-grid,
.shop-grid,
.insta-grid {
  display: grid;
  gap: 1rem;
}

.video-card,
.product-card,
.insta-card,
.watch-card,
.wear-card,
.message,
.story,
.filters,
.product-layout,
.community {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: 0.9rem;
}

.video-card,
.product-card,
.insta-card,
.wear-card,
.watch-card,
.message,
.story,
.community,
.filters {
  padding: 0.9rem;
}

.video-card img,
.product-card img,
.product-gallery img,
.thumb-row img {
  width: 100%;
  border-radius: 0.7rem;
  object-fit: cover;
}

.video-thumb {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.video-badge,
.video-duration {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-badge {
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 0, 0, 0.88);
  color: #fff;
  font-weight: 700;
}

.video-duration {
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.3rem 0.55rem;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
}

.video-card iframe,
.video-embed iframe,
.watch-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0.7rem;
}

.channel-embed-link {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 139, 0, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.9);
  color: var(--text);
  text-align: center;
  padding: 1rem;
}

.channel-embed-link span {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.channel-embed-link strong {
  font-size: 1.05rem;
}

.video-card a {
  position: relative;
  display: block;
}

.play-icon {
  position: absolute;
  inset: auto auto 0.55rem 0.55rem;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--accent);
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.insta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insta-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at top left, rgba(255, 139, 0, 0.35), transparent 58%),
    #111;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.insta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 139, 0, 0.7);
}

.insta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.insta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.08) 72%);
  z-index: 1;
}

.insta-card span {
  position: relative;
  z-index: 2;
  padding: 0.95rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.insta-embed-wrap {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #0f0f0f;
}

.insta-embed-wrap iframe {
  width: 100%;
  min-height: 500px;
  border: 0;
}

.countdown {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  height: 220px;
}

.product-body {
  padding-top: 0.8rem;
}

.watch-wear-grid {
  display: grid;
  gap: 1rem;
}

.community-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.community-form input,
select {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 0.5rem;
  padding: 0.65rem 0.7rem;
}

.community-form input {
  min-width: 220px;
  flex: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.social-links svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--text);
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
}

.page-main {
  margin-top: 1.2rem;
}

.page-hero {
  text-align: center;
  padding: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
}

.filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filters label {
  display: grid;
  gap: 0.4rem;
}

.shop-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-layout {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.thumb-row {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.price {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
}

.qr-box {
  margin-top: 1rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 0.7rem;
}

.top-gap {
  margin-top: 1rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .navbar {
    padding-inline: 2rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    gap: 1rem;
    background: transparent;
  }

  .nav-links a {
    border-top: 0;
    padding: 0;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    padding: 1.2rem 2.2rem 2.2rem;
  }

  .hero-social-frame {
    justify-items: end;
    align-content: end;
    padding: 6.4rem 2.1rem 2.2rem;
    gap: 1rem;
  }

  .hero-social-chip {
    padding: 0.52rem 0.9rem;
  }

  .hero-social-chip span {
    font-size: 0.8rem;
  }

  .youtube-chip {
    margin-right: 16rem;
    margin-left: 0;
  }

  .insta-chip {
    margin-right: 12rem;
    margin-left: 0;
  }

  .facebook-chip {
    margin-right: 14rem;
    margin-left: 0;
  }

  .hero-content {
    max-width: 38rem;
    padding-bottom: 2.2rem;
  }

  .hero-portrait-wrap {
    justify-content: flex-end;
    min-height: 520px;
  }

  .hero-portrait {
    width: min(48vw, 720px);
    transform: translate(var(--portrait-shift-desktop), 1.4rem);
  }

  .hero-portrait-glow {
    width: min(32vw, 460px);
    height: min(32vw, 460px);
    right: 0.5rem;
    bottom: 1.2rem;
  }

  .hero-stats {
    bottom: 3rem;
    right: 2rem;
    gap: 1rem;
  }

  .stat-card {
    padding: 0.7rem 1.1rem;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.74rem;
    margin-top: 0.35rem;
  }

  .video-grid,
  .product-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .watch-wear-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .product-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}
