:root {
    /* Colors - Warm Sunset Palette */
    --coral: #FF6B5B;
    --coral-light: #FF8A7A;
    --coral-dark: #E55A4A;
    --peach: #FFAB91;
    --cream: #FFF8F5;
    --cream-dark: #FFF0EA;
    --sand: #F5E6DC;
    --charcoal: #2D2926;
    --charcoal-light: #4A4543;
    --muted: #8B7F7A;
    --success: #4ADE80;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #FF6B5B 0%, #FF8A7A 50%, #FFAB91 100%);
    --gradient-mesh:
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 91, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 171, 145, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 30%, rgba(255, 138, 122, 0.2) 0%, transparent 40%);

    /* Typography */
    --font-display: 'Lora', serif;
    --font-body: 'Instrument Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
    --shadow-md: 0 8px 24px rgba(45, 41, 38, 0.08);
    --shadow-lg: 0 16px 48px rgba(45, 41, 38, 0.12);
    --shadow-xl: 0 24px 64px rgba(45, 41, 38, 0.16);
    --shadow-glow: 0 0 60px rgba(255, 107, 91, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise Overlay */
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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

::selection {
    background: var(--coral);
    color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countdown-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(255, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 41, 38, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--charcoal);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-warm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 107, 91, 0.4);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.logo-text span {
    color: var(--coral);
}

.nav-links {
    display: none;
    gap: var(--space-xl);
    list-style: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 1.0625rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 640px) {
    .nav-cta {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-warm);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-md), 0 8px 32px rgba(255, 107, 91, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 12px 40px rgba(255, 107, 91, 0.4);
    animation: gradient-shift 3s ease infinite;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 41, 38, 0.08);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 41, 38, 0.12);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-2px);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--coral);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 107, 91, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse-soft 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-5xl) 0 var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: -2;
}

.hero-blob-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.2) 0%, rgba(255, 171, 145, 0.15) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 20s ease-in-out infinite, float 15s ease-in-out infinite;
    z-index: -1;
    filter: blur(40px);
}

.hero-blob-2 {
    position: absolute;
    bottom: 0;
    right: -15%;
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, rgba(255, 138, 122, 0.25) 0%, rgba(255, 171, 145, 0.1) 100%);
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    animation: blob-morph 25s ease-in-out infinite reverse, float-reverse 18s ease-in-out infinite;
    z-index: -1;
    filter: blur(60px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

.hero-text {
    text-align: center;
    animation: fade-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    margin-bottom: var(--space-lg);
    animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--space-lg);
    animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.hero-title-highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto var(--space-xl);
    animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 var(--space-xl);
    }
}

/* Email Form */
.email-form {
    max-width: 480px;
    margin: 0 auto;
    animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .email-form {
        margin: 0;
    }
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .form-wrapper {
        flex-direction: row;
        background: var(--white);
        padding: var(--space-xs);
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(45, 41, 38, 0.05);
    }
}

.form-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--charcoal);
    outline: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .form-input {
        border: none;
        background: transparent;
    }
}

.form-input::placeholder {
    color: var(--muted);
}

.form-input:focus {
    border-color: var(--coral);
}

@media (min-width: 640px) {
    .form-input:focus {
        border-color: transparent;
    }
}

.form-input.error {
    border-color: var(--coral);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.form-btn {
    padding: var(--space-md) var(--space-xl);
}

.form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.form-success.show {
    display: flex;
    animation: scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--success), #22C55E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.form-success-text {
    font-weight: 600;
    color: var(--charcoal);
}

.email-form.submitted .form-wrapper {
    display: none;
}

.email-form.submitted .form-success {
    display: flex;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .social-proof {
        justify-content: flex-start;
    }
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--cream);
    margin-left: -12px;
    background: var(--sand);
    transition: transform 0.3s ease;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-stack:hover img {
    margin-left: -8px;
}

.avatar-stack:hover img:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 1rem;
    color: var(--muted);
}

.social-proof-text strong {
    color: var(--charcoal);
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    animation: slide-in-right 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.phone-wrapper {
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 91, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-soft 4s ease-in-out infinite;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 640px) {
    .phone-frame {
        width: 320px;
        height: 660px;
    }
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 200;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--cream);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* App UI Inside Phone */
.app-header {
    padding: 60px 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.app-icon-btn.primary {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.15), rgba(255, 171, 145, 0.1));
    color: var(--coral);
}

.app-icon-btn.secondary {
    background: var(--white);
    color: var(--muted);
    box-shadow: var(--shadow-sm);
}

.app-status {
    text-align: center;
}

.app-status-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.app-status-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--success);
}

.app-status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-soft 1.5s ease-in-out infinite;
}

/* App Main Content */
.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}


.app-timer {
    text-align: center;
    margin-bottom: 24px;
}

.app-timer-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    animation: countdown-pulse 2s ease-in-out infinite;
}

.app-timer-label {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 4px;
}

/* Check-in Button */
.checkin-btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--gradient-warm);
    background-size: 200% 200%;
    border: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    box-shadow:
        0 16px 40px rgba(255, 107, 91, 0.4),
        0 0 0 8px rgba(255, 107, 91, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.checkin-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 107, 91, 0.5);
    border-radius: 50%;
    animation: checkin-ring-pulse 2s ease-out infinite;
}

@keyframes checkin-ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.checkin-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 20px 50px rgba(255, 107, 91, 0.5),
        0 0 0 12px rgba(255, 107, 91, 0.15);
    animation: gradient-shift 2s ease infinite;
}

.checkin-btn:active {
    transform: scale(0.95);
}

.checkin-btn i {
    font-size: 2.5rem;
}

.checkin-btn span {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.app-last-checkin {
    margin-top: 24px;
    text-align: center;
}

.app-last-checkin-label {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.app-last-checkin-value {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}

/* App Bottom Nav */
.app-nav {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: space-around;
    background: var(--white);
    border-top: 1px solid rgba(45, 41, 38, 0.05);
}

.app-nav-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--muted);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.app-nav-item.active {
    color: var(--coral);
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.1), rgba(255, 171, 145, 0.05));
}

/* Success Overlay */
.app-success-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    border-radius: 40px;
    z-index: 100;
}

.app-success-overlay.show {
    opacity: 1;
}

.app-success-overlay i {
    font-size: 5rem;
    margin-bottom: 16px;
}

.app-success-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.app-success-overlay p {
    opacity: 0.9;
    font-size: 1.0625rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .scroll-indicator {
        display: flex;
    }
}

.scroll-indicator i {
    font-size: 1.25rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted);
}

/* Section Transitions */
.section-fade-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-fade-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-fade-top-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-fade-bottom-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-5xl) 0;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
}

/* Connector Line */
.steps-connector {
    display: none;
    position: absolute;
    top: 64px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--peach));
    border-radius: var(--radius-full);
    opacity: 0.3;
}

@media (min-width: 768px) {
    .steps-connector {
        display: block;
    }
}

.step-card {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--coral);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45, 41, 38, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-card:hover .step-icon {
    transform: translateY(-8px) rotate(-3deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: 1.0625rem;
    color: var(--muted);
}

/* Features Section */
.features {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features-bg-blob {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 91, 0.08) 0%, transparent 70%);
    filter: blur(60px);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(45, 41, 38, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 0.03;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon.coral {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.15), rgba(255, 107, 91, 0.05));
    color: var(--coral);
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
    color: #22C55E;
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: #3B82F6;
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    color: #8B5CF6;
}

.feature-icon.amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    color: #F59E0B;
}

.feature-icon.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: #EC4899;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-description {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Use Cases Section */
.use-cases {
    padding: var(--space-5xl) 0;
    position: relative;
}

.use-cases-blob {
    position: absolute;
    top: 0;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 171, 145, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.use-case-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45, 41, 38, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.use-case-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 var(--radius-xl) 0 100%;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.use-case-card:hover .use-case-decoration {
    width: 140px;
    height: 140px;
    opacity: 0.7;
}

.use-case-card.seniors .use-case-decoration {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.15), rgba(255, 171, 145, 0.1));
}

.use-case-card.families .use-case-decoration {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(251, 113, 133, 0.1));
}

.use-case-card.active .use-case-decoration {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(134, 239, 172, 0.1));
}

.use-case-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    position: relative;
}

.use-case-card.seniors .use-case-icon {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.1), rgba(255, 171, 145, 0.05));
    color: var(--coral);
}

.use-case-card.families .use-case-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(251, 113, 133, 0.05));
    color: #EC4899;
}

.use-case-card.active .use-case-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(134, 239, 172, 0.05));
    color: #22C55E;
}

.use-case-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.use-case-description {
    font-size: 1.0625rem;
    color: var(--muted);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.use-case-features {
    list-style: none;
}

.use-case-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--muted);
    padding: var(--space-xs) 0;
}

.use-case-features li i {
    color: var(--coral);
    font-size: 1rem;
}

/* Privacy Section */
.privacy {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .privacy-content {
        grid-template-columns: 1fr 1fr;
    }
}

.privacy-visual {
    display: flex;
    justify-content: center;
}

.privacy-icon-wrapper {
    position: relative;
}

.privacy-circle-outer {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.1), rgba(255, 171, 145, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 8s ease-in-out infinite;
}

@media (min-width: 640px) {
    .privacy-circle-outer {
        width: 320px;
        height: 320px;
    }
}

.privacy-circle-inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .privacy-circle-inner {
        width: 240px;
        height: 240px;
    }
}

.privacy-circle-inner i {
    font-size: 5rem;
    color: var(--coral);
}

@media (min-width: 640px) {
    .privacy-circle-inner i {
        font-size: 6rem;
    }
}

.privacy-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.privacy-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.privacy-badge-text {
    font-size: 1rem;
    font-weight: 600;
}

.privacy-badge.gdpr {
    top: -16px;
    right: -24px;
    animation: float 5s ease-in-out infinite;
}

.privacy-badge.gdpr .privacy-badge-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
    color: #22C55E;
}

.privacy-badge.no-tracking {
    bottom: -16px;
    left: -24px;
    animation: float-reverse 6s ease-in-out infinite;
}

.privacy-badge.no-tracking .privacy-badge-icon {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.15), rgba(255, 107, 91, 0.05));
    color: var(--coral);
}

.privacy-text .section-badge {
    display: inline-flex;
    margin-bottom: var(--space-md);
}

.privacy-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
}

.privacy-text h2 span {
    color: var(--coral);
}

.privacy-text > p {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: var(--space-xl);
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.privacy-feature {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(45, 41, 38, 0.04);
    transition: all 0.3s ease;
}

.privacy-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.privacy-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-feature:nth-child(1) .privacy-feature-icon {
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.1), rgba(255, 107, 91, 0.05));
    color: var(--coral);
}

.privacy-feature:nth-child(2) .privacy-feature-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
    color: #EC4899;
}

.privacy-feature:nth-child(3) .privacy-feature-icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.05));
    color: #22C55E;
}

.privacy-feature-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 4px;
}

.privacy-feature-content p {
    font-size: 1rem;
    color: var(--muted);
}

/* Pricing Section */
.pricing {
    padding: var(--space-5xl) 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45, 41, 38, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-dark) 100%);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255, 107, 91, 0.1), rgba(255, 171, 145, 0.05));
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--coral);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.pricing-description {
    font-size: 1.0625rem;
    color: var(--muted);
    margin-bottom: var(--space-lg);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: var(--space-lg);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
}

.pricing-period {
    font-size: 1.125rem;
    color: var(--muted);
}

.pricing-divider {
    height: 1px;
    background: rgba(45, 41, 38, 0.08);
    margin: var(--space-lg) 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 1.0625rem;
}

.pricing-features li i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-features li i.check {
    color: #22C55E;
}

.pricing-features li i.x {
    color: var(--muted);
}

.pricing-cta {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 1rem;
    color: var(--muted);
}

.pricing-note strong {
    color: var(--charcoal);
}

/* FAQ Section */
.faq {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(45, 41, 38, 0.08);
}

.faq-button {
    width: 100%;
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    color: var(--charcoal);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-button:hover {
    color: var(--coral);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--coral);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding-bottom: var(--space-lg);
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: var(--space-5xl) 0;
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

.cta-blob-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-blob-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(50px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
}

.cta .email-form {
    max-width: 480px;
    margin: 0 auto;
    opacity: 1;
    animation: none;
}

@media (min-width: 640px) {
    .cta .form-wrapper {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-xl);
    }

    .cta .form-input {
        background: transparent;
    }
}

.cta .form-btn {
    background: var(--charcoal);
    color: var(--white);
}

.cta .form-btn:hover {
    background: var(--charcoal-light);
}

.cta .form-success {
    background: rgba(255, 255, 255, 0.95);
}

.cta-note {
    margin-top: var(--space-lg);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    background: var(--charcoal);
    padding: var(--space-3xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--coral);
    box-shadow: none;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Global Floating Blobs */
.floating-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;
    overflow: hidden;
}

.floating-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    will-change: transform, border-radius;
}

.floating-blob-1 {
    top: -5%;
    left: -5%;
    width: 550px;
    height: 550px;
    background: rgba(255, 107, 91, 0.12);
    animation:
        blob-drift-1 35s ease-in-out infinite,
        blob-morph-1 25s ease-in-out infinite;
}

.floating-blob-2 {
    top: 20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: rgba(255, 171, 145, 0.15);
    animation:
        blob-drift-2 40s ease-in-out infinite,
        blob-morph-2 30s ease-in-out infinite;
}

.floating-blob-3 {
    bottom: 30%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: rgba(255, 138, 122, 0.1);
    animation:
        blob-drift-3 32s ease-in-out infinite,
        blob-morph-3 28s ease-in-out infinite;
}

.floating-blob-4 {
    bottom: -8%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 91, 0.1);
    animation:
        blob-drift-4 38s ease-in-out infinite,
        blob-morph-1 22s ease-in-out infinite reverse;
}

.floating-blob-5 {
    top: 50%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: rgba(251, 182, 206, 0.08);
    animation:
        blob-drift-5 42s ease-in-out infinite,
        blob-morph-2 35s ease-in-out infinite;
}

@keyframes blob-drift-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, 40px) rotate(5deg); }
    50% { transform: translate(-20px, 60px) rotate(-3deg); }
    75% { transform: translate(40px, 20px) rotate(8deg); }
}

@keyframes blob-drift-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 30px) rotate(-6deg); }
    66% { transform: translate(20px, -40px) rotate(4deg); }
}

@keyframes blob-drift-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(25px, -30px) rotate(7deg); }
    40% { transform: translate(-35px, 20px) rotate(-4deg); }
    60% { transform: translate(15px, 45px) rotate(3deg); }
    80% { transform: translate(-20px, -25px) rotate(-6deg); }
}

@keyframes blob-drift-4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -30px) rotate(-8deg); }
}

@keyframes blob-drift-5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-30px, -50px) rotate(10deg); }
    50% { transform: translate(40px, -20px) rotate(-5deg); }
    75% { transform: translate(-15px, 35px) rotate(7deg); }
}

@keyframes blob-morph-1 {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
    50% { border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%; }
    75% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
}

@keyframes blob-morph-2 {
    0%, 100% { border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
    33% { border-radius: 55% 45% 35% 65% / 45% 55% 45% 55%; }
    66% { border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%; }
}

@keyframes blob-morph-3 {
    0%, 100% { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
    50% { border-radius: 65% 35% 55% 45% / 50% 50% 40% 60%; }
}

@media (max-width: 768px) {
    .floating-blob {
        opacity: 0.7;
    }
    .floating-blob-1 { width: 350px; height: 350px; }
    .floating-blob-2 { width: 300px; height: 300px; }
    .floating-blob-3 { width: 250px; height: 250px; }
    .floating-blob-4 { width: 320px; height: 320px; }
    .floating-blob-5 { width: 200px; height: 200px; }
}
