:root {
    --bg: #fff7ff;
    --ink: rgba(36, 18, 52, 0.92);
    --muted: rgba(36, 18, 52, 0.72);

    --card: rgba(255, 255, 255, 0.78);
    --card-2: rgba(255, 255, 255, 0.9);
    --border: rgba(56, 22, 84, 0.14);

    --pink: #ff63b5;
    --purple: #7c5cff;
    --mint: #2ee9a6;
    --butter: #ffe08a;

    --radius: 18px;
    --shadow: 0 14px 32px rgba(22, 6, 32, 0.12);

    --max: 980px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: ui-rounded, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.6;

    /* The background is now rendered by the fixed ::before layer */
    background: transparent;
}

/* Fixed background layer: stays perfectly stationary while the page scrolls */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
            radial-gradient(900px 600px at 10% 10%, rgba(255, 99, 181, 0.18), transparent 55%),
            radial-gradient(900px 600px at 90% 15%, rgba(124, 92, 255, 0.16), transparent 55%),
            radial-gradient(850px 650px at 30% 95%, rgba(46, 233, 166, 0.14), transparent 55%),
            linear-gradient(180deg, #fff7ff, #fbfbff 60%, #fff7ff);

    background-repeat: no-repeat;
    background-size: auto, auto, auto, cover;
}

a {
    color: inherit;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

a:hover {
    color: rgba(36, 18, 52, 0.98);
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--card-2);
    border: 2px solid var(--border);
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px dashed rgba(56, 22, 84, 0.18);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.2px;
    text-decoration: none;
}

.brand-badge {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 99, 181, 0.85), rgba(124, 92, 255, 0.8));
    color: white;
    box-shadow: 0 8px 18px rgba(124, 92, 255, 0.18);
}

.nav-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-weight: 650;
}

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

.hero-card {
    position: relative;
    border: 2px solid rgba(56, 22, 84, 0.16);
    background: linear-gradient(180deg, var(--card-2), rgba(255, 255, 255, 0.62));
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-sparkles {
    position: absolute;
    right: 16px;
    top: 14px;
    display: inline-flex;
    gap: 10px;
    color: rgba(124, 92, 255, 0.55);
    font-weight: 900;
}

.eyebrow {
    margin: 0 0 6px;
    color: var(--muted);
    font-weight: 650;
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.1;
}

.lead {
    margin: 0 0 14px;
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 72ch;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 2px solid rgba(56, 22, 84, 0.12);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 18px rgba(22, 6, 32, 0.06);
    font-weight: 650;
    font-size: 0.95rem;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 8px 0 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    border: 2px solid rgba(56, 22, 84, 0.14);
    background: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(22, 6, 32, 0.08);
}

.button.primary {
    border-color: transparent;
    background: linear-gradient(
            135deg,
            rgba(255, 99, 181, 0.92),
            rgba(124, 92, 255, 0.86),
            rgba(46, 233, 166, 0.55)
    );
    color: rgba(255, 255, 255, 0.96);
}

/* Baby-pink variant for "Find me" */
.button.pink {
  border-color: rgba(56, 22, 84, 0.12);
  background: #ffd1e8;
  color: rgba(36, 18, 52, 0.92);
}

.button.pink:hover {
  background: #ffc1e0;
  text-decoration: none;
}

.small-note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.section {
    padding: 26px 0;
}

h2 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    letter-spacing: 0.2px;
}

.muted {
    color: var(--muted);
    margin-top: 0;
}

.grid {
    display: grid;
    gap: 14px;
}

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

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

@media (max-width: 860px) {
    .grid.two,
    .grid.three {
        grid-template-columns: 1fr;
    }
}

.card {
    border: 2px solid rgba(56, 22, 84, 0.12);
    background: var(--card);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 12px 26px rgba(22, 6, 32, 0.07);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.list {
    margin: 0;
    padding-left: 18px;
}

.sticker {
    position: relative;
}

.sticker-top {
    display: inline-flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 2px solid rgba(56, 22, 84, 0.12);
    background: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.sticker-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    border: 2px solid rgba(56, 22, 84, 0.12);
}

.dot-a {
    background: rgba(255, 99, 181, 0.8);
}
.dot-b {
    background: rgba(124, 92, 255, 0.75);
}
.dot-c {
    background: rgba(46, 233, 166, 0.7);
}

.bubble {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(255, 255, 255, 0.62)
  );
  position: relative;
  overflow: hidden;
}

/* Add the same sparkly stars to each interests bubble */
.bubble::after {
  content: "✦ ✧ ✦";
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(124, 92, 255, 0.55);
  font-weight: 900;
  letter-spacing: 6px;
  pointer-events: none;
}

.mini-note {
  margin-top: 14px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.72);
}

.footer {
    padding: 18px 0 34px;
    border-top: 2px dashed rgba(56, 22, 84, 0.18);
    margin-top: 18px;
}
