/* ===== My Innercircle — pinks + hint of blue ===== */
:root {
  --bg: #fdf4f6;
  --bg-card: #fff;
  --text: #2d1f24;
  --text-muted: #7a6570;
  --accent: #c97082;
  --accent-hover: #b85a6d;
  --accent-soft: rgba(201, 112, 130, 0.12);
  --blue-hint: #8b9dc3;
  --border: #f0e2e6;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  padding: 1rem 1.5rem 1.1rem;
  background: linear-gradient(135deg, rgba(253, 244, 246, 0.98) 0%, rgba(255, 250, 252, 0.98) 50%, rgba(245, 238, 248, 0.98) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  box-shadow: 0 2px 20px rgba(201, 112, 130, 0.06);
  animation: headerEnter 0.5s ease-out;
}

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

/* Header title with pop: gradient + animation */
.logo-pop {
  font-family: "Playfair Display", var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(120deg, var(--accent) 0%, #b85a6d 40%, var(--blue-hint) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(201, 112, 130, 0.2));
  transition: background-position 0.5s ease, filter 0.3s ease;
}

.logo-pop:hover {
  background-position: 100% center;
  filter: drop-shadow(0 2px 6px rgba(201, 112, 130, 0.35)) brightness(1.08);
}

.site-header .logo-pop {
  -webkit-text-fill-color: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.header-link:hover {
  color: var(--accent);
}

.header-login {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.header-login:hover {
  background: var(--accent);
  color: #fff;
}

/* Sections */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.section-title.flirty {
  font-style: italic;
  font-weight: 500;
}

/* Hero */
.hero {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }
}

.hero-image-wrap {
  aspect-ratio: 4/5;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(201, 112, 130, 0.2);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-name {
  font-family: "Great Vibes", var(--serif);
  font-size: clamp(2.75rem, 8vw, 4rem);
  font-weight: 400;
  margin: 0 0 0.05em;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-handle-line {
  margin: -0.2em 0 0.5rem;
}

.hero-handle {
  color: #c97082;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.hero-handle:hover {
  text-decoration: underline;
}

.hero-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.hero-promise {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Perks */
.perks {
  margin-bottom: 3.5rem;
}

.perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.perks-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.perks-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Preview */
.preview {
  margin-bottom: 3.5rem;
}

.preview-sub {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.preview-card {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.preview-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px var(--accent-soft);
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.member-count {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* Trust line under pricing */
.trust-line {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.85rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--blue-hint);
  color: var(--blue-hint);
}

/* Pricing */
.pricing {
  margin-bottom: 3.5rem;
}

.tiers {
  display: grid;
  gap: 1.25rem;
  justify-content: center;
}

.tier-card {
  max-width: 360px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.tier-card.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(201, 123, 138, 0.18);
}

.tier-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.tier-card .price {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.tier-card .amount {
  font-size: 1.75rem;
  font-weight: 600;
}

.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.tier-card ul li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tier-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.tier-card .btn {
  width: 100%;
  text-align: center;
}

/* FAQ */
.faq {
  margin-bottom: 3.5rem;
}

.faq-list {
  margin: 0;
}

.faq-list dt {
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA block */
.cta {
  text-align: center;
  padding: 2rem 0;
}

.cta .section-title {
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  padding: 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0 0 0.35rem;
}

.footer-ig {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.footer-ig:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Success page */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  text-align: center;
  max-width: 480px;
}

.success-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}

.success-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}

.steps {
  text-align: left;
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.steps li {
  margin-bottom: 1rem;
}

.link-ig {
  color: var(--blue-hint);
  font-weight: 600;
  text-decoration: none;
}

.link-ig:hover {
  text-decoration: underline;
  color: var(--accent);
}

.success-content .btn {
  margin-bottom: 1.5rem;
}

.success-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.success-confirm {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.success-confirm-title {
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.success-confirm-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.success-confirm input {
  padding: 0.6rem 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 200px;
}

.success-email-done {
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}

/* Legal pages (Terms, Privacy) */
.legal-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.legal-page h2 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.legal-page h2:first-of-type {
  margin-top: 1rem;
}

.legal-page p {
  margin: 0 0 0.75rem;
}

.legal-page a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
}

.legal-page a:not(.btn):hover {
  text-decoration: underline;
}

.legal-page .btn {
  margin-top: 1rem;
}
