:root {
  --bg: #14030c;
  --bg-elev: #1c0712;
  --bg-card: #210a16;
  --line: rgba(255, 92, 140, 0.28);
  --gold: #ff4d7a;
  --gold-soft: #ffd36a;
  --cream: #fff1f4;
  --muted: #c9a4b0;
  --placeholder: #6a3d4c;
  --ink: #1a0810;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(80, 0, 30, 0.45);
  --dock: 86px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 60, 120, 0.22), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(255, 180, 40, 0.12), transparent 30%),
    var(--bg);
  color: var(--cream);
  line-height: 1.55;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: calc(var(--dock) + env(safe-area-inset-bottom));
}

.shell {
  grid-column: 1;
  min-width: 0;
}

.muse {
  display: none;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(20, 3, 12, 0.82);
  border-bottom: 1px solid rgba(255, 77, 122, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-soft);
}

.logo-sub {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav,
.desktop-only {
  display: none;
}

.header-join {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffe08a, #ff4d7a);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(255, 77, 122, 0.35);
}

.btn-pulse {
  animation: pulse 1.6s ease-in-out infinite;
}

.btn-xl {
  min-width: min(100%, 320px);
  padding: 18px 28px;
  font-size: 16px;
}

.btn-dock {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  letter-spacing: 0.18em;
}

.header-join {
  display: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 77, 122, 0.45);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 12px rgba(255, 77, 122, 0);
  }
}

.mobile-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
}

.mobile-hero img {
  width: 100%;
  height: 78svh;
  object-fit: cover;
  object-position: 50% 12%;
}

.mobile-hero-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(12, 0, 8, 0.92) 38%);
}

.mobile-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1.05;
  margin-bottom: 8px;
}

.mobile-hero p {
  color: var(--muted);
  margin-bottom: 16px;
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}

h1,
h2,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.hero {
  padding: 18px 0 8px;
}

.lead,
.section-intro {
  color: var(--muted);
  margin-bottom: 18px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 680px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  min-height: 680px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  position: absolute;
  inset: 0;
}

.slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 0, 8, 0.1) 0%, rgba(12, 0, 8, 0.55) 42%, #14030c 100%);
}

.slide-copy,
.slide-cta {
  position: relative;
  z-index: 1;
  padding: 24px 16px 78px;
}

.slide h2 {
  font-size: clamp(36px, 9vw, 54px);
  margin-bottom: 8px;
}

.slide p {
  color: var(--muted);
  margin-bottom: 14px;
}

.reward-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.reward-table th,
.reward-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-table td {
  font-weight: 600;
}

.reward-table th {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reward-table td:last-child,
.reward-table th:last-child {
  text-align: right;
  color: var(--gold-soft);
}

.slide-cta {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slide-cta h2 {
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1.05;
}

.dots {
  position: absolute;
  left: 16px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
}

.dot.active {
  width: 22px;
  background: var(--gold-soft);
}

.arrow {
  position: absolute;
  bottom: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12, 0, 8, 0.7);
  color: var(--cream);
}

.arrow.prev {
  right: 58px;
}

.arrow.next {
  right: 12px;
}

.section {
  padding: 40px 0;
}

.section h2 {
  font-size: clamp(30px, 8vw, 46px);
  margin-bottom: 8px;
}

.vibe-grid {
  display: grid;
  gap: 12px;
}

.vibe-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 180px;
  border: 1px solid var(--line);
}

.vibe-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vibe-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(8, 0, 6, 0.92));
}

.vibe-card h3 {
  font-size: 18px;
}

.calc-grid,
.about-grid,
.stats {
  display: grid;
  gap: 12px;
}

.card,
.pillar,
.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--gold-soft);
  gap: 8px;
}

input[type="number"] {
  width: 100%;
  background: #12030a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  padding: 14px 16px;
  border-radius: 16px;
  outline: none;
}

input[type="number"]::placeholder {
  color: var(--placeholder);
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#calc-result.preview .result-row span {
  color: var(--placeholder);
}

.total {
  font-size: 22px;
  color: var(--gold-soft);
}

.hint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  opacity: 0.45;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(40px, 12vw, 64px);
}

.cta-band p {
  color: var(--cream);
  margin: 10px auto 22px;
  max-width: 36ch;
}

.pillar h3 {
  margin-bottom: 4px;
}

.pillar p,
.stat {
  color: var(--muted);
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--gold-soft);
  color: var(--gold-soft);
}

.socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-weight: 600;
}

.social svg {
  width: 28px;
  height: 28px;
  color: var(--gold-soft);
}

.footer {
  padding: 12px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.warn {
  margin-bottom: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 211, 106, 0.25);
  background: rgba(255, 211, 106, 0.08);
  color: var(--gold-soft);
  line-height: 1.55;
}

.join-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(12, 0, 8, 0.96) 28%);
}

@media (min-width: 860px) {
  body {
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr) minmax(180px, 280px);
    padding-bottom: 0;
  }

  .shell {
    grid-column: 2;
  }

  .muse {
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    overflow: hidden;
  }

  .muse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
    filter: saturate(1.15);
  }

  .muse-left {
    grid-column: 1;
    -webkit-mask-image: linear-gradient(90deg, #000 60%, transparent);
    mask-image: linear-gradient(90deg, #000 60%, transparent);
  }

  .muse-right {
    grid-column: 3;
    -webkit-mask-image: linear-gradient(270deg, #000 60%, transparent);
    mask-image: linear-gradient(270deg, #000 60%, transparent);
  }

  .mobile-hero,
  .join-dock {
    display: none;
  }

  .nav,
  .header-join {
    display: flex;
  }

  .nav {
    gap: 22px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .header-inner {
    min-height: 72px;
  }

  .desktop-only {
    display: block;
  }

  .hero {
    padding: 36px 0 20px;
  }

  .vibe-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .calc-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .socials {
    grid-template-columns: repeat(4, 1fr);
  }

  .carousel,
  .slide,
  .slide-cta {
    min-height: 720px;
  }

  .slide-shade {
    background: linear-gradient(
      90deg,
      rgba(12, 0, 8, 0.9) 0%,
      rgba(12, 0, 8, 0.55) 46%,
      rgba(12, 0, 8, 0.12) 100%
    );
  }

  .slide img {
    object-position: 72% 18%;
  }

  .slide:has(.slide-cta) img {
    object-position: 70% 62%;
  }

  .reward-table {
    font-size: 30px;
  }

  .slide-copy {
    padding: 40px 36px 88px 40px;
    max-width: 560px;
  }

  .slide-cta {
    justify-content: center;
    align-items: flex-start;
    padding: 48px 40px 88px 40px;
    max-width: 520px;
  }

  .slide-cta .btn {
    width: auto;
    min-width: 240px;
    padding: 14px 36px;
  }

  .cta-band {
    min-height: 560px;
    padding: 120px 24px;
    display: flex;
    align-items: center;
  }

  .cta-bg {
    object-position: 48% 22%;
    opacity: 0.4;
  }

  .cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 0, 8, 0.5), rgba(12, 0, 8, 0.78));
    pointer-events: none;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
  }

  .btn-xl {
    min-width: 260px;
    width: auto;
    margin: 0 auto;
  }
}
