:root {
  --bg: #F8F6F2;
  --text: #2D2A26;
  --muted: #7A746D;
  --border: #DDD7CF;
  --card: rgba(255, 255, 255, 0.74);
  --hover: #F0ECE5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
}

.loader-line {
  width: 142px;
  height: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(45, 42, 38, 0.16);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--text);
  animation: loadLine 1s ease forwards;
  transform-origin: left;
}

@keyframes loadLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.page {
  min-height: 100vh;
  padding: 22px 18px 34px;
  display: grid;
  place-items: center;
}

.shell {
  width: min(100%, 440px);
  opacity: 0;
  transform: translateY(10px);
  animation: enter 0.75s ease 0.9s forwards;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(320px, 72vw, 470px);
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(45,42,38,.11);
}

.hero-slider .hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 1s ease,
    transform 5s ease;
}

.hero-slider .hero.active {
  opacity: 1;
  transform: scale(1.03);
}


.intro {
  text-align: center;
  padding: 26px 6px 18px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(26px, 8vw, 38px);
  line-height: 1;
  letter-spacing: 5px;
  font-weight: 700;
}

.tagline {
  margin: 0;
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.25;
  font-weight: 300;
  text-transform: lowercase;
}

.sub {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.arrow {
  margin-top: 12px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
}

.links {
  display: grid;
  gap: 13px;
}

.card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  min-height: 104px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-2px);
  background: var(--hover);
}

.card:active {
  transform: scale(0.985);
}

.card .label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}

.card .note {
  margin-top: -5px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: center;
  margin-top: 4px;
}

.onlyfans {
  height: 34px;
  max-width: 178px;
}

.fansly {
  height: 30px;
  max-width: 138px;
}

.privacy {
  height: 31px;
  max-width: 144px;
}

.recommended {
  border-color: rgba(45, 42, 38, 0.28);
}

.footer {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.socials a {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  opacity: 0.92;
}

.socials img {
  height: 22px;
  width: 22px;
}

.handle {
  margin: 14px 0 0;
  font-size: 13px;
}

.made {
  margin: 18px 0 0;
  font-size: 12px;
  opacity: 0.78;
}

@media (min-width: 800px) {
  .page {
    padding: 42px 20px;
  }

  .shell {
    width: min(100%, 470px);
  }
}
