:root {
  --bg-1: #1a0a12;
  --bg-2: #2d1522;
  --accent: #e8b4bc;
  --accent-2: #c9a0dc;
  --text: #faf5f6;
  --muted: rgba(250, 245, 246, 0.72);
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(232, 180, 188, 0.22);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Vazirmatn", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #4a2840 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(201, 160, 220, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(232, 180, 188, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, var(--bg-1) 0%, var(--bg-2) 45%, #1a0f18 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 2rem) 4rem;
}

header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 8vw, 4rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent);
}

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 9vw, 4.25rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff 10%, var(--accent) 55%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: var(--muted);
  max-width: 32em;
  margin: 0 auto;
  line-height: 1.75;
}

.card {
  border-radius: 1.25rem;
  padding: clamp(1.75rem, 5vw, 2.5rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.65rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #1a0a12;
  background: linear-gradient(135deg, var(--accent) 0%, #f5d0d6 100%);
  box-shadow: 0 8px 32px rgba(232, 180, 188, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 180, 188, 0.45);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--glass);
  transform: translateY(-2px);
}

footer {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }
}
