/* ============================================
   CUSTOM PROPERTIES & RESET
   ============================================ */
:root {
    --bg-deep: #0d0b1a;
    --bg-section-alt: #110f22;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);

    --warm-gold: #f5c76e;
    --warm-gold-soft: rgba(245, 199, 110, 0.15);
    --soft-rose: #e8a0bf;
    --soft-rose-muted: rgba(232, 160, 191, 0.12);
    --blush: #f4c2c2;
    --lavender: #c3b1e1;
    --cream: #fdf6ec;
    --text-primary: #ede6db;
    --text-secondary: rgba(237, 230, 219, 0.65);
    --text-muted: rgba(237, 230, 219, 0.4);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', cursive;

    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   GLOBAL LAYOUT
   ============================================ */
.section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.section:nth-child(even) {
    background: var(--bg-section-alt);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTION 1: OPENING
   ============================================ */
.section-opening {
    min-height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 80%, rgba(245, 199, 110, 0.06) 0%, transparent 60%),
                var(--bg-deep);
}

.flower-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: floatSoft 4s ease-in-out infinite;
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.title-main {
    font-family: var(--font-display);
    font-weight: 400;
    margin-bottom: 1.8rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.line-1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: var(--text-secondary);
    animation: slideUp 1s var(--ease-smooth) 0.3s both;
}

.line-2 {
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    color: var(--warm-gold);
    font-style: italic;
    animation: slideUp 1s var(--ease-smooth) 0.6s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeIn 1.2s var(--ease-smooth) 1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: fadeIn 1.5s var(--ease-smooth) 1.5s both;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--warm-gold);
    border-bottom: 2px solid var(--warm-gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ============================================
   SECTION 2: SORRY
   ============================================ */
.section-sorry {
    text-align: center;
}

.sorry-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft-rose);
    border: 1px solid rgba(232, 160, 191, 0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.sorry-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.sorry-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-smooth);
}

.sorry-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(245, 199, 110, 0.15);
    transform: translateY(-4px);
}

.card-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--soft-rose);
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    border-left: 3px solid rgba(232, 160, 191, 0.35);
    line-height: 1.6;
}

.card-response p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.card-response em {
    color: var(--warm-gold);
    font-style: italic;
}

/* ============================================
   SECTION 3: UNDERSTANDING
   ============================================ */
.section-understand {
    text-align: center;
}

.understand-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: floatSoft 5s ease-in-out infinite;
}

.understand-content {
    margin-bottom: 3rem;
}

.big-text {
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.big-text em {
    color: var(--blush);
    font-style: italic;
}

.highlight-word {
    color: var(--warm-gold);
    font-weight: 600;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--warm-gold);
    opacity: 0.4;
    border-radius: 2px;
}

.understand-note {
    position: relative;
    background: var(--warm-gold-soft);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: left;
}

.note-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--warm-gold);
    border-radius: 4px 0 0 4px;
}

.understand-note p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================
   SECTION 4: WHAT I MEANT
   ============================================ */
.section-meant {
    text-align: center;
}

.meant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

.meant-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s;
}

.meant-item:hover {
    transform: translateY(-3px);
    border-color: rgba(195, 177, 225, 0.2);
}

.meant-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(195, 177, 225, 0.2);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.meant-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.meant-item strong {
    color: var(--lavender);
}

.meant-item em {
    color: var(--blush);
}

/* ============================================
   SECTION 5: BRIDGE
   ============================================ */
.section-bridge {
    text-align: center;
}

.bridge-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.bridge-side {
    flex: 1;
    min-width: 160px;
    max-width: 240px;
}

.bridge-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 1rem;
}

.bridge-traits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bridge-traits span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bridge-side.left .bridge-traits span {
    background: var(--soft-rose-muted);
    color: var(--soft-rose);
    border: 1px solid rgba(232, 160, 191, 0.2);
}

.bridge-side.right .bridge-traits span {
    background: var(--warm-gold-soft);
    color: var(--warm-gold);
    border: 1px solid rgba(245, 199, 110, 0.2);
}

.bridge-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.bridge-heart {
    font-size: 2.5rem;
    color: var(--soft-rose);
    animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bridge-label-center {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--lavender);
}

.bridge-text {
    max-width: 650px;
    margin: 0 auto;
}

.bridge-text p:last-child {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* ============================================
   SECTION 6: PROMISE
   ============================================ */
.section-promise {
    text-align: center;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: transform 0.3s var(--ease-smooth), border-color 0.4s;
}

.promise-item:hover {
    transform: translateX(6px);
    border-color: rgba(245, 199, 110, 0.15);
}

.promise-check {
    color: var(--warm-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.promise-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.promise-item p + p {
    margin-top: 0.8rem;
}

/* ============================================
   SECTION 6: YOU CAN BE SOFT
   ============================================ */
.section-soft {
    text-align: center;
    background: radial-gradient(ellipse at 50% 30%, rgba(232, 160, 191, 0.06) 0%, transparent 60%),
                var(--bg-section-alt);
}

.soft-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: floatSoft 4s ease-in-out infinite;
}

.soft-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.soft-card {
    text-align: left;
}

.soft-note {
    position: relative;
    background: var(--soft-rose-muted);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: left;
    margin-top: 1rem;
}

.soft-note .note-accent {
    background: var(--soft-rose);
}

.soft-note p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================
   SECTION 7: PARTNER IN CRIME (TOGETHER)
   ============================================ */
.section-together {
    text-align: center;
    background: radial-gradient(ellipse at 50% 50%, rgba(195, 177, 225, 0.05) 0%, transparent 70%),
                var(--bg-section-alt);
}

.section-title-special {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.script-text {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--warm-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.together-message {
    max-width: 650px;
    margin: 0 auto 4rem;
}

.together-message p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.together-message strong {
    color: var(--warm-gold);
}

.together-message em {
    color: var(--blush);
}

/* Orbit animation */
.orbit-system {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(195, 177, 225, 0.2);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-you,
.orbit-me {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.orbit-you {
    background: rgba(232, 160, 191, 0.2);
    border: 2px solid var(--soft-rose);
    color: var(--soft-rose);
    animation: orbitYou 12s linear infinite;
}

.orbit-me {
    background: rgba(245, 199, 110, 0.2);
    border: 2px solid var(--warm-gold);
    color: var(--warm-gold);
    animation: orbitMe 12s linear infinite;
}

@keyframes orbitYou {
    0% { top: -26px; left: calc(50% - 26px); }
    25% { top: calc(50% - 26px); left: calc(100% - 26px); }
    50% { top: calc(100% - 26px); left: calc(50% - 26px); }
    75% { top: calc(50% - 26px); left: -26px; }
    100% { top: -26px; left: calc(50% - 26px); }
}

@keyframes orbitMe {
    0% { top: calc(100% - 26px); left: calc(50% - 26px); }
    25% { top: calc(50% - 26px); left: -26px; }
    50% { top: -26px; left: calc(50% - 26px); }
    75% { top: calc(50% - 26px); left: calc(100% - 26px); }
    100% { top: calc(100% - 26px); left: calc(50% - 26px); }
}

.orbit-center-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--lavender);
    text-align: center;
    line-height: 1.3;
}

/* ============================================
   SECTION 9: FINAL — LOVE ANIMATIONS
   ============================================ */
.section-final {
    text-align: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 80%, rgba(255, 183, 197, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 40%, rgba(245, 199, 110, 0.05) 0%, transparent 40%),
                var(--bg-deep);
}

/* ---------- PULSING HEART GLOW ---------- */
.final-heart-glow {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 120, 150, 0.12) 0%, rgba(255, 120, 150, 0.04) 40%, transparent 70%);
    animation: heartGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heartGlowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

/* ---------- FLOATING HEARTS CONTAINER ---------- */
.floating-hearts-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-heart {
    position: absolute;
    bottom: -60px;
    color: rgba(255, 150, 175, 0.35);
    animation: floatHeart var(--duration) var(--delay) ease-out infinite;
    pointer-events: none;
    filter: blur(0.3px);
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) translateX(0) scale(var(--scale)) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: var(--peak-opacity);
    }
    50% {
        opacity: var(--peak-opacity);
    }
    100% {
        transform: translateY(calc(-100vh - 80px)) translateX(var(--drift)) scale(var(--scale)) rotate(var(--end-rotation));
        opacity: 0;
    }
}

/* ---------- TITLE SHIMMER ---------- */
.final-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--warm-gold);
    margin-bottom: 2.5rem;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.title-shimmer {
    position: relative;
    display: inline;
    background: linear-gradient(
        120deg,
        var(--warm-gold) 0%,
        var(--warm-gold) 35%,
        #fff5e0 50%,
        var(--warm-gold) 65%,
        var(--warm-gold) 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 100% center; }
    50% { background-position: 0% center; }
}

.title-heart-accent {
    display: inline-block;
    color: var(--soft-rose);
    font-size: 0.6em;
    margin-left: 0.4rem;
    animation: heartBeatAccent 1.5s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes heartBeatAccent {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    56% { transform: scale(1); }
}

/* ---------- CONTENT ---------- */
.final-small {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.final-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.final-body em {
    color: var(--blush);
}

/* ---------- SIGN-OFF WITH SPARKLES ---------- */
.final-sign {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-block;
    position: relative;
}

.sparkle-ring {
    position: absolute;
    inset: -30px -40px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 0.7rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle.s1 {
    top: 0;
    left: 10%;
    color: var(--warm-gold);
    animation-delay: 0s;
}

.sparkle.s2 {
    top: 15%;
    right: 0;
    color: var(--soft-rose);
    animation-delay: 0.5s;
}

.sparkle.s3 {
    bottom: 25%;
    left: -5%;
    color: var(--lavender);
    animation-delay: 1s;
}

.sparkle.s4 {
    bottom: 5%;
    right: 10%;
    color: var(--warm-gold);
    animation-delay: 1.5s;
}

.sparkle.s5 {
    top: 50%;
    right: -8%;
    color: var(--blush);
    animation-delay: 0.8s;
}

.sparkle.s6 {
    top: 40%;
    left: -2%;
    color: var(--soft-rose);
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) translateY(-6px);
    }
}

.sign-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.sign-name {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--warm-gold);
    position: relative;
    z-index: 1;
    animation: signGlow 3s ease-in-out infinite;
}

@keyframes signGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(245, 199, 110, 0.1);
    }
    50% {
        text-shadow: 0 0 20px rgba(245, 199, 110, 0.3),
                     0 0 40px rgba(245, 199, 110, 0.1);
    }
}

/* ---------- FLOWERS ---------- */
.final-flowers {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.final-flowers span {
    animation: floatSoft 3s ease-in-out infinite;
}

.final-flowers span:nth-child(2) { animation-delay: 0.4s; }
.final-flowers span:nth-child(3) { animation-delay: 0.8s; }
.final-flowers span:nth-child(4) { animation-delay: 1.2s; }
.final-flowers span:nth-child(5) { animation-delay: 1.6s; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 80px 16px;
    }

    .meant-grid {
        grid-template-columns: 1fr;
    }

    .bridge-visual {
        flex-direction: column;
        gap: 2rem;
    }

    .bridge-side {
        max-width: 100%;
    }

    .bridge-center {
        order: -1;
    }

    .sorry-card {
        padding: 1.8rem;
    }

    .orbit-system {
        width: 220px;
        height: 220px;
    }

    .soft-note {
        padding: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 480px) {
    .section {
        padding: 60px 14px;
        min-height: auto;
    }

    .section-opening {
        min-height: 100vh;
        min-height: 100svh;
    }

    .flower-icon {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .sorry-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .card-quote {
        font-size: 0.95rem;
        padding-left: 0.8rem;
    }

    .card-response p {
        font-size: 0.9rem;
    }

    .big-text {
        font-size: 1rem;
    }

    .understand-note {
        padding: 1.5rem;
    }

    .meant-item {
        padding: 1.5rem;
    }

    .meant-number {
        font-size: 2rem;
    }

    .promise-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .promise-item p {
        font-size: 0.88rem;
    }

    .bridge-traits span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .final-title {
        font-size: 1.7rem;
    }

    .final-body {
        font-size: 0.95rem;
    }

    .final-heart-glow {
        width: 220px;
        height: 220px;
    }

    .sparkle-ring {
        inset: -20px -25px;
    }

    .sparkle {
        font-size: 0.55rem;
    }

    .orbit-system {
        width: 190px;
        height: 190px;
    }

    .orbit-you,
    .orbit-me {
        width: 40px;
        height: 40px;
        font-size: 0.65rem;
    }

    .final-flowers {
        gap: 1rem;
        font-size: 1.4rem;
    }
}

/* ============================================
   SELECTION & SCROLLBAR
   ============================================ */
::selection {
    background: rgba(255, 183, 197, 0.3);
    color: var(--text-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 183, 197, 0.25);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 183, 197, 0.45);
}