:root {
    --pink:      #FF69B4;
    --pink-dim:  #c4508a;
    --pink-soft: rgba(255,105,180,0.08);
    --purple:    #da5bff;
    --bg:        #07050c;
    --border2:   #2a1840;
    --text:      #ddc8f0;
    --muted:     #6b5480;
    --muted2:    #9880b0;
    --white:     #f0e8ff;
}

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

html, body {
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
}
.orb-1 {
    width: 55vw; height: 55vw;
    max-width: 600px; max-height: 600px;
    background: var(--pink);
    top: -20%; left: -15%;
    opacity: 0.09;
    animation: drift1 20s ease-in-out infinite;
}
.orb-2 {
    width: 45vw; height: 45vw;
    max-width: 500px; max-height: 500px;
    background: var(--purple);
    bottom: -15%; right: -10%;
    opacity: 0.09;
    animation: drift2 24s ease-in-out infinite;
}

@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,35px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-35px,-50px)} }

.center {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(24px, 6vw, 56px);
}

.logo-hex {
    width: 30px; height: 30px;
    stroke: var(--pink); fill: none; stroke-width: 1.5;
    filter: drop-shadow(0 0 10px var(--pink));
    margin-bottom: clamp(24px, 4vh, 36px);
    animation: fadeUp 0.9s ease both;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: clamp(20px, 4vh, 32px);
    animation: fadeUp 0.9s 0.15s ease both;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(38px, 7.5vw, 84px);
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.5px;
    animation: fadeUp 0.9s 0.28s ease both;
}
.title em {
    font-style: italic;
    color: var(--pink);
    filter: drop-shadow(0 0 22px rgba(255,105,180,0.5));
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(15px, 2.2vw, 20px);
    line-height: 1.7;
    color: var(--muted2);
    margin-top: clamp(18px, 3.5vh, 28px);
    max-width: 480px;
    animation: fadeUp 0.9s 0.4s ease both;
}

.rule {
    width: 1px;
    height: clamp(36px, 5.5vh, 56px);
    background: linear-gradient(to bottom, transparent, var(--pink), transparent);
    margin: clamp(28px, 4.5vh, 44px) auto;
    animation: fadeUp 0.9s 0.52s ease both;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border2);
    border-radius: 100px;
    padding: 11px 24px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted2);
    background: var(--pink-soft);
    animation: fadeUp 0.9s 0.64s ease both;
}
.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 8px var(--pink);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse  { 0%,100%{opacity:1} 50%{opacity:0.25} }

@media (max-width: 480px) {
    .title { line-height: 1.1; }
}

@media (max-width: 380px) {
    .badge { font-size: 9px; letter-spacing: 2px; padding: 10px 18px; }
}
