/* CATGIRLS.WORLD Temporary Home Page — Option 1: Vibrant & Playful */

:root {
  --bg: #fff8fb;
  --bg-2: #ffe9f3;
  --panel: rgba(255,255,255,0.82);
  --panel-border: rgba(255, 120, 180, 0.18);
  --text: #241826;
  --muted: #6c5a67;
  --pink: #ff4fa3;
  --pink-2: #ff76bd;
  --pink-3: #ffcae1;
  --shadow: 0 22px 60px rgba(255, 79, 163, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #ffffff 0%, var(--bg) 44%, #fff0f7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}

.orb-a {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 120px;
  background: radial-gradient(circle, rgba(255,79,163,0.25), rgba(255,79,163,0.02));
}

.orb-b {
  width: 340px;
  height: 340px;
  right: -110px;
  top: 80px;
  background: radial-gradient(circle, rgba(255,182,215,0.4), rgba(255,182,215,0.05));
  animation-delay: -3s;
}

.orb-c {
  width: 220px;
  height: 220px;
  right: 24%;
  bottom: 90px;
  background: radial-gradient(circle, rgba(255,122,189,0.18), rgba(255,122,189,0.02));
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-22px) translateX(10px); }
}

.site-header,
.hero,
.feature-strip,
.details,
.newsletter,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 36px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #ffd6e8);
  box-shadow: 0 8px 24px rgba(255, 79, 163, 0.14);
}

.brand-text {
  font-size: 1.05rem;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5e4a59;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-nav a:hover {
  color: var(--pink);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  color: white;
  box-shadow: 0 14px 32px rgba(255, 79, 163, 0.26);
}

.btn-ghost {
  background: rgba(255,255,255,0.68);
  border-color: rgba(255,79,163,0.18);
  color: var(--text);
}

.btn-lg {
  padding: 14px 22px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 48px 36px 20px;
  min-height: calc(100vh - 96px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.countdown-label {
  color: var(--pink);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), #ff80c2, #ffb4d5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  margin: 26px 0 28px;
  flex-wrap: wrap;
}

.countdown-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 24px;
  max-width: 660px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.countdown-grid div {
  padding: 18px 12px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,235,244,0.8));
  border: 1px solid rgba(255, 111, 178, 0.14);
}

.countdown-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.countdown-grid span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.countdown-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 650px;
}

.character-card {
  width: min(100%, 640px);
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.95), rgba(255,255,255,0.38) 34%, rgba(255,79,163,0.18) 100%);
  border: 1px solid rgba(255, 122, 189, 0.22);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.character-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(255,79,163,0.18), rgba(255,79,163,0) 65%);
  filter: blur(12px);
}

.character {
  position: absolute;
  inset: 8% 8% 4%;
  border-radius: 28px;
}

.cat-ears {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 48%;
  height: 30%;
  border-radius: 40% 40% 25% 25%;
  background: linear-gradient(180deg, #3a1e33, #1d1020 58%, #291726);
  box-shadow: 0 -4px 0 rgba(255,255,255,0.07) inset;
}

.cat-ears::before,
.cat-ears::after {
  content: "";
  position: absolute;
  top: -14%;
  width: 22%;
  height: 52%;
  background: linear-gradient(180deg, #3a1e33, #1d1020);
  border-radius: 50% 50% 10% 10%;
}

.cat-ears::before {
  left: 3%;
  transform: rotate(-18deg);
}

.cat-ears::after {
  right: 3%;
  transform: rotate(18deg);
}

.hair {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 62%;
  height: 72%;
  transform: translateX(-50%);
  border-radius: 44% 44% 42% 42%;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.10), rgba(255,255,255,0) 26%),
    linear-gradient(180deg, #3f2037 0%, #221125 46%, #120814 100%);
  clip-path: polygon(14% 0%, 34% 8%, 50% 0%, 66% 8%, 86% 0%, 100% 22%, 100% 100%, 0 100%, 0 22%);
  filter: drop-shadow(0 18px 30px rgba(19, 7, 20, 0.28));
}

.face {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 32%;
  height: 28%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffdbe7, #ffd1df);
  border-radius: 48% 48% 45% 45%;
  box-shadow:
    0 0 0 14px rgba(255, 241, 248, 0.2),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}

.eye {
  position: absolute;
  top: 31%;
  width: 10%;
  height: 12%;
  border-radius: 50%;
  background: #2d1128;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.6) inset;
}

.eye-left { left: 26%; }
.eye-right { right: 26%; }

.blush {
  position: absolute;
  top: 58%;
  width: 13%;
  height: 8%;
  border-radius: 999px;
  background: rgba(255,79,163,0.32);
  filter: blur(1px);
}

.blush-left { left: 16%; }
.blush-right { right: 16%; }

.mouth {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 10%;
  height: 10%;
  transform: translateX(-50%);
  border-bottom: 3px solid #8a4669;
  border-radius: 0 0 999px 999px;
}

.hoodie {
  position: absolute;
  left: 50%;
  bottom: 11%;
  transform: translateX(-50%);
  width: 56%;
  padding: 16px 18px;
  border-radius: 28px;
  text-align: center;
  color: white;
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--pink), #ff88c0);
  box-shadow: 0 18px 38px rgba(255, 79, 163, 0.25);
}

.paw {
  position: absolute;
  font-size: 2.1rem;
  filter: drop-shadow(0 10px 12px rgba(255,79,163,0.2));
  animation: bob 4s ease-in-out infinite;
}

.paw-left {
  left: 10%;
  bottom: 28%;
  transform: rotate(-16deg);
}

.paw-right {
  right: 12%;
  top: 22%;
  transform: rotate(12deg);
  animation-delay: -1.5s;
}

@keyframes bob {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}

.feature-strip {
  margin: 0 36px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-strip article,
.info-card,
.newsletter {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(255, 79, 163, 0.10);
}

.feature-strip article {
  padding: 18px;
}

.feature-strip h2,
.info-card h3,
.newsletter h2,
.section-head h2 {
  margin: 0 0 10px;
}

.feature-strip p,
.info-card p,
.newsletter p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.details {
  padding: 34px 36px 0;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  letter-spacing: -0.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  padding: 20px;
}

.newsletter {
  margin: 34px 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.signup-form {
  display: flex;
  gap: 10px;
  min-width: min(100%, 430px);
}

.signup-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,79,163,0.16);
  border-radius: 999px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255,255,255,0.85);
  outline: none;
}

.signup-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  color: white;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 36px 36px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-links a:hover {
  color: var(--pink);
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .details,
  .newsletter,
  .site-footer,
  .feature-strip {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    min-height: 520px;
    order: -1;
  }

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

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

  .site-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .top-nav {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.74rem;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    flex: 1;
  }

  .hero {
    gap: 20px;
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 4.4rem);
  }

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

  .feature-strip,
  .cards {
    grid-template-columns: 1fr;
  }

  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .signup-form {
    min-width: 0;
    width: 100%;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}
