:root {
  --bg: #090909;
  --bg-soft: #121212;
  --bg-elevated: #171717;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f3f1eb;
  --muted: #a7a29a;
  --accent: #d6b17a;
  --accent-2: #8f877d;
  --accent-cool: #7f8c99;
  --glow: 0 0 0 rgba(0, 0, 0, 0);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(214, 177, 122, 0.08), transparent 22%),
    radial-gradient(circle at 85% 30%, rgba(127, 140, 153, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.025) 0%, transparent 28%),
    linear-gradient(180deg, #070707 0%, #0c0c0c 35%, #101010 70%, #080808 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.ambient-1 {
  width: 420px;
  height: 420px;
  background: rgba(214, 177, 122, 0.14);
  top: 8%;
  left: -120px;
}

.ambient-2 {
  width: 360px;
  height: 360px;
  background: rgba(127, 140, 153, 0.12);
  right: -100px;
  top: 42%;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at center, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 92%);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  z-index: 1;
}

.section-padded {
  padding: 5.5rem 0;
}

.glass {
  background:
    linear-gradient(180deg, rgba(24,24,24,0.88), rgba(16,16,16,0.72));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 80px rgba(0,0,0,0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  width: min(1200px, calc(100% - 1.5rem));
  margin: 1rem auto 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff8b8b);
  box-shadow: var(--glow);
}

.nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
}

.nav a {
  transition: color var(--transition), transform var(--transition);
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.82) contrast(1.04) brightness(0.9);
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.12), rgba(8,8,8,0.7)),
    linear-gradient(90deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.5) 36%, rgba(8,8,8,0.16) 72%);
}

.hero-content {
  padding: 10rem 0 3.5rem;
}

.eyebrow,
.section-label {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d9dfeb;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero h1,
.section h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 9vw, 7rem);
  letter-spacing: -0.04em;
}

.hero h1 span {
  background: linear-gradient(135deg, #fff, #ff8b8b 55%, #d49dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.section-head p,
.section-copy p,
.testimonial p,
.contact-copy p,
.premium-copy p,
.feed-card p,
.mini-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 620px;
  font-size: 1.08rem;
  margin: 1.25rem 0 0;
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* =========================
   BUTTON SYSTEM
   Replace your current .btn / .btn-primary / .btn-secondary / .btn-sm / .btn-full blocks with this
   ========================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transform: skewX(-14deg);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    opacity 220ms ease;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.btn > * {
  transform: skewX(14deg);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 28%,
    rgba(255,255,255,0.01) 100%
  );
  pointer-events: none;
  opacity: 0.55;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0.9;
}

.btn:hover {
  transform: skewX(-18deg) translateY(-2px);
}

.btn-primary {
  color: #16120d;
  background: linear-gradient(135deg, #ecd7b4 0%, #d9b57c 58%, #c49a61 100%);
  border-color: rgba(255, 232, 195, 0.26);
  box-shadow:
    0 12px 30px rgba(171, 124, 59, 0.2),
    0 0 18px rgba(214, 177, 122, 0.08);
}

.btn-primary:hover {
  box-shadow:
    0 18px 38px rgba(171, 124, 59, 0.26),
    0 0 24px rgba(214, 177, 122, 0.12);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.045) 0%,
    rgba(255,255,255,0.02) 100%
  );
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.btn-secondary:hover {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.065) 0%,
    rgba(255,255,255,0.03) 100%
  );
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(255,255,255,0.04);
}

.btn-sm {
  min-height: 48px;
  padding: 0.72rem 1.15rem;
  font-size: 0.92rem;
  border-radius: 12px;
}

.btn-sm::after {
  border-radius: 10px;
}

.btn-full {
  width: 100%;
}

/* Better spacing when buttons sit side by side */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Mobile cleanup */
@media (max-width: 560px) {
  .btn,
  .btn-sm {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-metrics {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric,
.feed-card,
.pricing-card,
.mini-card,
.testimonial,
.contact-wrap,
.media-card,
.premium-preview {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.metric::after,
.feed-card::after,
.pricing-card::after,
.mini-card::after,
.testimonial::after,
.contact-wrap::after,
.media-card::after,
.premium-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.metric {
  padding: 1.2rem;
}

.metric strong,
.feed-card h3,
.pricing-card h3,
.mini-card h4,
.premium-copy h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.split-layout,
.community-layout,
.membership-grid,
.contact-wrap {
  display: grid;
  gap: 1.4rem;
}

.split-layout {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.section-copy h2,
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

.pill {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #ddd7cf;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card {
  overflow: hidden;
  position: relative;
  min-height: 520px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.media-card-overlay span {
  display: block;
  color: #ffd3d3;
  margin-bottom: 0.35rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.feed-card {
  padding: 1rem;
  grid-column: span 4;
}

.feed-card:nth-child(2) {
  grid-column: span 8;
}

.feed-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.platform,
.feed-tag,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.platform.tiktok { background: rgba(255,255,255,0.08); }
.platform.youtube { background: rgba(255,59,59,0.14); color: #ffd1d1; }
.platform.instagram { background: rgba(160,91,255,0.14); color: #ead7ff; }
.feed-tag,
.pricing-badge { background: rgba(255,255,255,0.07); color: var(--muted); }

.feed-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 260px;
  margin-bottom: 1rem;
}

.feed-thumb.wide { min-height: 340px; }
.feed-thumb.portrait { min-height: 340px; }

.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feed-card:hover .feed-thumb img,
.media-card:hover img,
.premium-preview:hover img {
  transform: scale(1.00);
}

.play-btn {
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 1.1rem;
  backdrop-filter: blur(12px);
}

.membership-grid {
  grid-template-columns: 1.15fr 0.85fr 0.8fr;
  align-items: stretch;
}

.premium-preview {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.premium-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(0.9) brightness(0.85);
}

.locked-layer {
  position: absolute;
  inset: 1rem 1rem auto 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
}

.premium-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
}

.pricing-card {
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0.75rem 0 1rem;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.premium-stack {
  display: grid;
  gap: 1rem;
}

.mini-card,
.testimonial {
  padding: 1.2rem;
}

.community-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial span {
  color: #f3d1d1;
  font-size: 0.9rem;
}

.contact-section {
  padding-bottom: 7rem;
}

.contact-wrap {
  grid-template-columns: 0.85fr 1.15fr;
  padding: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.5rem;
}

.form-row label {
  color: #f1f4fb;
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255, 94, 122, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 94, 122, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 220ms; }

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.tilt-card:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 59, 59, 0.08);
}

@media (max-width: 1100px) {
  .hero-metrics,
  .split-layout,
  .membership-grid,
  .community-layout,
  .contact-wrap,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feed-card,
  .feed-card:nth-child(2) {
    grid-column: span 12;
  }

  .media-card {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .topbar {
    border-radius: 24px;
    padding: 0.95rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .hero-content {
    padding-top: 9rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13vw, 5rem);
  }

  .section-padded {
    padding: 4.25rem 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .hero-actions,
  .pill-row {
    flex-direction: column;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

  .feed-thumb,
  .feed-thumb.wide,
  .feed-thumb.portrait,
  .premium-preview,
  .media-card {
    min-height: 260px;
  }

  .price {
    font-size: 2.4rem;
  }
}

.section {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

.feed-link {
  display: block;
}

.tiktok-embed-wrap {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.tiktok-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  border-radius: 18px;
}

.youtube-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps it perfectly proportional */
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.youtube-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}

.feed-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.feed-link .feed-card {
  height: 100%;
}

.feed-grid > .feed-link {
  grid-column: span 4;
}

.feed-grid > .feed-link:nth-child(2) {
  grid-column: span 8;
}

/* =========================
   HEX BACKGROUND SYSTEM
   ========================= */

:root {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* MAIN HEX OVERLAY */
.hex-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* reveal area */
  mask-image: radial-gradient(
    circle 360px at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.72) 26%,
    rgba(0, 0, 0, 0.34) 52%,
    rgba(0, 0, 0, 0.12) 68%,
    transparent 86%
  );
  -webkit-mask-image: radial-gradient(
    circle 360px at var(--mouse-x) var(--mouse-y),
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.72) 26%,
    rgba(0, 0, 0, 0.34) 52%,
    rgba(0, 0, 0, 0.12) 68%,
    transparent 86%
  );

  /* INTERLOCKED HEX GRID (brick-style) */
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='83' viewBox='0 0 96 83'%3E%3Cg fill='none' stroke='rgba(214,177,122,0.14)' stroke-width='1'%3E%3Cpath d='M24 1 L72 1 L95 41.5 L72 82 L24 82 L1 41.5 Z'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='83' viewBox='0 0 96 83'%3E%3Cg fill='none' stroke='rgba(214,177,122,0.14)' stroke-width='1'%3E%3Cpath d='M24 1 L72 1 L95 41.5 L72 82 L24 82 L1 41.5 Z'/%3E%3C/g%3E%3C/svg%3E");

  background-size: 96px 83px, 96px 83px;
  background-position: 0 0, 48px 41.5px;
  background-repeat: repeat;
}

/* HEX DETAIL LAYER (adds depth + subtle definition) */
.hex-overlay::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.18;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='83' viewBox='0 0 96 83'%3E%3Cg fill='none' stroke='rgba(214,177,122,0.34)' stroke-width='1'%3E%3Cpath d='M24 1 L72 1 L95 41.5 L72 82 L24 82 L1 41.5 Z'/%3E%3C/g%3E%3C/svg%3E");

  background-size: 96px 83px;
  background-repeat: repeat;

  filter: drop-shadow(0 0 6px rgba(214, 177, 122, 0.03));
}

/* CURSOR GLOW (bigger + softer + dimmer) */
.hex-overlay::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle 320px at var(--mouse-x) var(--mouse-y),
      rgba(214, 177, 122, 0.12) 0%,
      rgba(214, 177, 122, 0.08) 18%,
      rgba(214, 177, 122, 0.045) 36%,
      rgba(214, 177, 122, 0.018) 56%,
      transparent 78%
    );

  filter: blur(18px);
  mix-blend-mode: screen;
}

/* =========================
   OPTIONAL CLEANUP 
   ========================= */

/* tone down old grid */
.grid-overlay {
  opacity: 0.02;
}

/* soften ambient glow */
.ambient {
  opacity: 0.2;
  filter: blur(120px);
}