:root {
  color-scheme: dark;
  --luv-bg: #100704;
  --luv-bg-deep: #1a0906;
  --luv-panel: rgba(31, 14, 10, 0.82);
  --luv-panel-strong: rgba(26, 10, 7, 0.94);
  --luv-line: rgba(222, 166, 85, 0.3);
  --luv-line-strong: rgba(224, 88, 130, 0.38);
  --luv-gold: #f2c15e;
  --luv-gold-soft: #f7ddb1;
  --luv-cream: #fff3dc;
  --luv-muted: #dac3a7;
  --luv-muted-2: #a88d71;
  --luv-rose: #b03958;
  --luv-rose-soft: #ff7296;
  --luv-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  --luv-heading: "Iowan Old Style", "Baskerville", Georgia, serif;
  --luv-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --luv-max: 1460px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--luv-cream);
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 193, 94, 0.18), transparent 28rem),
    radial-gradient(circle at 78% 5%, rgba(176, 57, 88, 0.18), transparent 32rem),
    linear-gradient(180deg, #160906 0%, #120805 26%, #0f0604 100%);
  font-family: var(--luv-body);
  line-height: 1.5;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.26;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 8, 5, 0.05), rgba(18, 8, 5, 0.9) 75%),
    radial-gradient(circle at 70% 15%, rgba(181, 46, 88, 0.16), transparent 28rem);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 90;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #150904;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(242, 193, 94, 0.14);
  background: rgba(18, 8, 5, 0.8);
  backdrop-filter: blur(18px);
}

.nav-shell,
main,
.site-footer {
  width: min(var(--luv-max), calc(100% - 56px));
  min-width: 0;
  margin: 0 auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 88px;
}

.brand-lockup,
.nav-menu,
.nav-links,
.hero-actions,
.bottom-actions,
.hero-mini-grid,
.community-grid {
  display: flex;
  min-width: 0;
}

.brand-lockup {
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
  min-width: 0;
}

.brand img {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 98, 144, 0.2));
}

.brand-divider {
  width: 1px;
  height: 34px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, transparent, rgba(242, 193, 94, 0.75), transparent);
}

.agency-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(242, 193, 94, 0.18);
  border-radius: 999px;
  background: rgba(57, 22, 16, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.agency-chip__orb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.85), transparent 24%),
    radial-gradient(circle at center, #ff5f8c, #a61749 72%);
  box-shadow: 0 0 18px rgba(255, 90, 135, 0.45);
}

.agency-chip b {
  font-family: var(--luv-heading);
  font-size: 1.08rem;
  color: var(--luv-gold);
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-menu {
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-links {
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 0.96rem;
  font-weight: 760;
}

.nav-links a {
  padding: 10px 0;
  color: rgba(255, 245, 228, 0.92);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--luv-gold);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.nav-cta,
.btn-primary {
  color: #1a0906;
  background: linear-gradient(135deg, #ffe6a5 0%, #e0a43b 100%);
  box-shadow: 0 16px 32px rgba(224, 164, 59, 0.24);
}

.btn-secondary {
  color: #fff5eb;
  border-color: rgba(214, 77, 115, 0.7);
  background: linear-gradient(180deg, rgba(106, 27, 45, 0.92), rgba(78, 18, 33, 0.88));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.menu-toggle {
  display: none;
}

main {
  padding: 28px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 0.95fr);
  gap: 52px;
  align-items: center;
  padding: 28px 0 56px;
}

.hero-copy,
.hero-visual,
.vip-photo-shell,
.info-card,
.community-section,
.faq-section,
.bottom-cta {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 77, 115, 0.44);
  background: rgba(64, 18, 26, 0.42);
  color: #ffefee;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.info-card h2,
.section-intro h2,
.bottom-copy h2 {
  font-family: var(--luv-heading);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  margin: 24px 0 18px;
  font-size: clamp(4rem, 6.5vw, 5.8rem);
  line-height: 0.92;
  color: var(--luv-cream);
}

.hero h1 span {
  display: block;
}

.hero h1 .gold-line {
  color: var(--luv-gold);
}

.hero h1 {
  text-wrap: balance;
}

.hero-text {
  max-width: 34rem;
  margin-bottom: 28px;
  color: var(--luv-muted);
  font-size: 1.48rem;
  line-height: 1.4;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-mini-grid {
  gap: 14px;
  margin-top: 22px;
}

.hero-mini-grid article,
.info-card,
.community-card,
.faq-list details {
  border: 1px solid var(--luv-line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(39, 18, 13, 0.78), rgba(24, 10, 7, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-mini-grid article {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px 18px 16px;
}

.hero-mini-grid strong,
.support-chip strong,
.live-preview-card strong {
  display: block;
  font-size: 1.06rem;
  font-weight: 900;
  color: var(--luv-gold-soft);
}

.hero-mini-grid p,
.live-preview-card p,
.support-chip p,
.section-intro p,
.info-card p,
.community-card p,
.faq-list p,
.bottom-copy p,
.site-footer span {
  margin-bottom: 0;
  color: var(--luv-muted);
}

.hero-mini-grid p {
  margin-top: 8px;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.glow-orb {
  position: absolute;
  z-index: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.84), transparent 26%),
    radial-gradient(circle at center, #ff5c90, #9d1743 74%);
  box-shadow: 0 0 34px rgba(255, 100, 146, 0.36);
  opacity: 0.95;
}

.glow-orb-one {
  top: 176px;
  left: 34px;
}

.glow-orb-two {
  top: 228px;
  right: 4px;
}

.vip-frame {
  position: absolute;
  top: 34px;
  right: 80px;
  width: min(520px, calc(100% - 120px));
  z-index: 1;
}

.vip-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 46px;
  padding: 10px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 236, 188, 0.3);
  background: linear-gradient(180deg, #f5e1b3 0%, #c99d4e 100%);
  color: #2a140a;
  font-family: var(--luv-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vip-photo-shell {
  position: relative;
  overflow: hidden;
  border-radius: 220px 220px 36px 36px;
  border: 10px solid #d9ac57;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
    #2a0f0b;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.48);
}

.vip-photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 245, 224, 0.06), rgba(255, 245, 224, 0) 30%, rgba(15, 6, 4, 0.15) 100%);
  pointer-events: none;
}

.vip-photo-shell img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.02) brightness(0.96);
}

.vip-nameplate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 96px;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, rgba(12, 8, 8, 0), rgba(16, 9, 6, 0.96) 82%);
}

.vip-nameplate strong {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 18px;
  background: rgba(14, 10, 23, 0.78);
  border: 1px solid rgba(242, 193, 94, 0.24);
  color: var(--luv-gold);
  font-family: var(--luv-heading);
  font-size: 1.9rem;
  font-weight: 800;
}

.live-preview-card {
  position: absolute;
  left: 0;
  top: 274px;
  z-index: 2;
  width: min(320px, calc(100% - 180px));
  padding: 20px 20px 16px;
  border: 1px solid rgba(242, 193, 94, 0.2);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(22, 11, 17, 0.9), rgba(18, 9, 13, 0.96));
  box-shadow: var(--luv-shadow);
}

.live-preview-card strong {
  margin-bottom: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-preview-card div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(242, 193, 94, 0.12);
}

.live-preview-card div:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.live-preview-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(180deg, #ff8c8e, #f2b56a);
  color: #230d08;
  font-weight: 900;
}

.live-preview-card b {
  display: block;
  font-size: 1rem;
  color: #fff1d7;
}

.live-preview-card small {
  color: var(--luv-muted-2);
  font-size: 0.95rem;
}

.support-chip {
  position: absolute;
  right: 0;
  bottom: 54px;
  z-index: 3;
  width: min(360px, calc(100% - 140px));
  padding: 18px 22px;
  border: 1px solid rgba(242, 193, 94, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 12, 17, 0.94), rgba(18, 9, 13, 0.98));
  box-shadow: var(--luv-shadow);
}

.support-chip strong {
  font-family: var(--luv-heading);
  font-size: 2rem;
  color: var(--luv-gold);
}

.support-chip p {
  margin-top: 6px;
  font-size: 1rem;
}

.accent-bars {
  position: absolute;
  right: 38px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.accent-bars span {
  display: block;
  width: 40px;
  height: 5px;
  border-radius: 999px;
}

.accent-bars span:nth-child(1) { background: #2cb673; }
.accent-bars span:nth-child(2) { background: #f5c151; }
.accent-bars span:nth-child(3) { background: #ff5f8c; }
.accent-bars span:nth-child(4) { background: #2663a8; }

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 6px;
}

.info-card,
.community-section,
.faq-section,
.bottom-cta {
  padding: 28px 28px 30px;
}

.info-card h2,
.section-intro h2,
.bottom-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2.55rem, 3vw, 3.4rem);
  color: var(--luv-gold);
}

.info-card p {
  max-width: 39rem;
  font-size: 1.08rem;
}

.info-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.info-card li,
.community-card,
.faq-list p {
  font-size: 1.03rem;
}

.info-card li {
  position: relative;
  padding-left: 34px;
  color: #f1e6d6;
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #3f2106 25%, transparent 26%),
    radial-gradient(circle at center, #f2c15e 0%, #f2c15e 68%, transparent 69%);
}

.community-section,
.faq-section,
.bottom-cta {
  margin-top: 18px;
  border: 1px solid var(--luv-line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(27, 12, 9, 0.86), rgba(18, 8, 6, 0.95));
}

.section-intro {
  margin-bottom: 24px;
}

.section-intro p {
  max-width: 48rem;
  font-size: 1.1rem;
}

.community-grid {
  gap: 18px;
  flex-wrap: wrap;
}

.community-card {
  flex: 1 1 260px;
  min-height: 204px;
  padding: 18px 18px 16px;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(155, 31, 63, 0.46);
  color: #ffdfe8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.community-card h3 {
  margin: 18px 0 8px;
  font-size: 2rem;
  color: #fff2dc;
}

.audio-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 58px;
  margin-top: 22px;
}

.audio-bars i {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe2ab, #ff5f8c);
}

.audio-bars i:nth-child(1) { height: 22px; }
.audio-bars i:nth-child(2) { height: 36px; }
.audio-bars i:nth-child(3) { height: 46px; }
.audio-bars i:nth-child(4) { height: 32px; }
.audio-bars i:nth-child(5) { height: 26px; }

.split-grid-bottom {
  margin-top: 18px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.25fr);
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.22rem;
  font-weight: 860;
  color: #fff1d7;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 10px;
  line-height: 1.55;
}

.bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at 14% 20%, rgba(153, 35, 57, 0.48), transparent 20rem),
    linear-gradient(90deg, rgba(115, 24, 34, 0.56), rgba(213, 147, 51, 0.9));
}

.bottom-copy h2 {
  color: #ffe3ac;
}

.bottom-copy p {
  color: #fff3d7;
  font-size: 1.08rem;
}

.bottom-actions {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 30px;
  color: var(--luv-muted);
}

.site-footer strong {
  color: var(--luv-gold);
  font-family: var(--luv-heading);
  font-size: 1.3rem;
}

@media (max-width: 1140px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .hero-visual {
    order: -1;
    min-height: 560px;
  }

  .vip-frame {
    position: relative;
    right: auto;
    width: min(540px, 100%);
    margin: 0 auto;
  }

  .live-preview-card {
    left: 36px;
  }

  .support-chip {
    right: 34px;
  }
}

@media (max-width: 920px) {
  .nav-shell,
  main,
  .site-footer {
    width: min(var(--luv-max), calc(100% - 32px));
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
  }

  .brand {
    width: 176px;
  }

  .brand img {
    width: 176px;
  }

  .brand-divider,
  .agency-chip {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(242, 193, 94, 0.22);
    border-radius: 14px;
    background: rgba(40, 18, 13, 0.82);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--luv-cream);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(242, 193, 94, 0.2);
    border-radius: 24px;
    background: rgba(20, 9, 7, 0.98);
    box-shadow: var(--luv-shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(242, 193, 94, 0.14);
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
  }

  .split-grid,
  .faq-section,
  .bottom-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .bottom-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 20px;
  }

  .hero {
    gap: 18px;
    padding: 10px 0 34px;
  }

  .eyebrow {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero-visual {
    min-height: 220px;
    margin-bottom: 6px;
  }

  .vip-frame {
    width: 214px;
  }

  .vip-badge {
    min-height: 32px;
    padding: 6px 22px;
    font-size: 0.9rem;
    top: -12px;
  }

  .vip-photo-shell {
    border-width: 7px;
    border-radius: 160px 160px 28px 28px;
  }

  .vip-photo-shell img {
    aspect-ratio: 0.78;
  }

  .vip-nameplate {
    min-height: 72px;
    padding: 14px 14px 18px;
  }

  .vip-nameplate strong {
    font-size: 1.2rem;
    padding: 8px 14px;
  }

  .live-preview-card {
    top: 58px;
    left: calc(50% + 44px);
    right: auto;
    width: 94px;
    padding: 11px 9px 8px;
    border-radius: 18px;
  }

  .live-preview-card strong {
    margin-bottom: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .live-preview-card div {
    gap: 8px;
    padding: 8px 0;
  }

  .live-preview-card span {
    width: 20px;
    height: 20px;
    font-size: 0.68rem;
  }

  .live-preview-card b {
    font-size: 0.72rem;
  }

  .live-preview-card small {
    display: none;
  }

  .support-chip {
    display: none;
  }

  .glow-orb {
    width: 56px;
    height: 56px;
  }

  .glow-orb-one {
    top: 138px;
    left: 8px;
  }

  .glow-orb-two {
    top: 132px;
    right: -8px;
  }

  .accent-bars {
    display: none;
  }

  .hero h1 {
    max-width: none;
    margin: 14px 0 10px;
    font-size: 2.84rem;
    line-height: 0.98;
  }

  .hero-text {
    margin-bottom: 12px;
    font-size: 0.96rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn,
  .bottom-actions .btn {
    width: 100%;
  }

  .hero-mini-grid {
    display: none;
  }

  .info-card,
  .community-section,
  .faq-section,
  .bottom-cta {
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .info-card h2,
  .section-intro h2,
  .bottom-copy h2 {
    margin-bottom: 10px;
    font-size: 2.35rem;
    line-height: 1;
  }

  .info-card p,
  .section-intro p,
  .community-card p,
  .faq-list p,
  .bottom-copy p {
    font-size: 0.98rem;
  }

  .community-grid {
    gap: 14px;
  }

  .community-card {
    min-height: 0;
    padding: 16px 14px;
  }

  .community-card h3 {
    margin: 14px 0 8px;
    font-size: 1.42rem;
  }

  .audio-bars {
    height: 42px;
    margin-top: 14px;
  }

  .faq-section {
    gap: 18px;
  }

  .faq-list details {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .faq-list summary {
    font-size: 1.02rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
  }
}
