/* === Reset + Base === */

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Floating pink blur backgrounds — used by hero */
.glow-blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 149, 0.35) 0%, rgba(255, 45, 149, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* === Typography === */

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 0 0 .6em;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
h4 { font-size: 20px; }

p {
    margin: 0 0 1em;
    color: var(--text-mute);
}

a {
    color: var(--pink-soft);
    text-decoration: none;
    transition: color var(--t-fast);
}
a:hover { color: var(--pink); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { padding-left: 1.2em; color: var(--text-mute); }
li { margin-bottom: .35em; }

hr {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 40px 0;
}

/* === Container === */

.container,
.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === Sections === */

section { padding: 80px 0; position: relative; }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.section-head .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 45, 149, 0.12);
    color: var(--pink);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 45, 149, 0.25);
}
.section-head p { font-size: 17px; }

/* === Utilities === */

.text-pink   { color: var(--pink); }
.text-soft   { color: var(--pink-soft); }
.text-mute   { color: var(--text-mute); }
.text-center { text-align: center; }
.gradient-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.divider-pink {
    width: 60px;
    height: 3px;
    background: var(--grad-main);
    margin: 16px auto;
    border-radius: var(--radius-pill);
}

/* Skip-link for accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--pink);
    color: #000;
    padding: 8px 14px;
    z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Focus state */
:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Selection */
::selection {
    background: var(--pink);
    color: #000;
}
