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

:root {
    --yellow: #F9D65C;
    --blue: #6EC8FF;
    --coral: #FF8674;
    --green: #A7D76B;
    --lilac: #BFA0FF;
    --cream: #FFF8E6;
    --ink: #2B2B2B;
    --white: #FFFFFF;
    --radius: 22px;
    --shadow: 0 8px 24px rgba(0,0,0,0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--ink);
    background: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Kawaii dotted background */
.kawaii-dots {
    background: 
        radial-gradient(circle, rgba(0,0,0,0.06) 1.2px, transparent 1.2px) 0 0/12px 12px,
        var(--yellow);
}

/* Header */
.header {
    background: var(--white);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    will-change: transform;
}

.header--hidden {
    transform: translateY(-120%);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--coral), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(255, 134, 116, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #8a10a0;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 10px;
    color: #ff8d02;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pill {
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 28px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-out;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 134, 116, 0.3);
}

.btn-primary:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 134, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.03);
}

/* Hero Section */
.hero {
    background: var(--yellow);
    position: relative;
    overflow: hidden;
    padding: 80px 32px 120px;
    background: 
        radial-gradient(circle, rgba(0,0,0,0.04) 1.2px, transparent 1.2px) 0 0/12px 12px,
        var(--yellow);
}

/* Confetti decorations */
.hero::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--coral);
    opacity: 0.3;
    border-radius: 50%;
    top: 10%;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--blue);
    opacity: 0.3;
    top: 30%;
    right: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(10deg); }
    66% { transform: translate(-15px, 15px) rotate(-10deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.5; 
    }
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink);
    margin-bottom: 16px;
    opacity: 0.7;
}

.hero h1 {
    font-family: 'Zen Maru Gothic', 'Fredoka', sans-serif;
    font-weight: 900;
    color: var(--ink);
    font-size: 3.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-quote {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--ink);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    min-height: 420px;
    padding: 40px;
}

.circle-stack {
    position: relative;
    width: clamp(320px, 34vw, 480px);
    min-height: clamp(300px, 36vw, 400px);
    display: flex;
    justify-content: center;
    align-items: center;
    --circle-horizontal-offset: clamp(160px, 18vw, 240px);
    --circle-vertical-offset: clamp(90px, 14vw, 170px);
    --circle-back-scale: 0.82;
}

.circle-photo {
    border-radius: 50%;
    border: 8px solid var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    width: clamp(220px, 24vw, 280px);
    height: clamp(220px, 24vw, 280px);
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.circle-stack .circle-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    will-change: transform, filter, opacity, box-shadow;
}

.circle-photo--primary {
    animation-name: cyclePrimary;
}

.circle-photo--secondary {
    animation-name: cycleSecondary;
}

.circle-photo--tertiary {
    animation-name: cycleTertiary;
}

@keyframes cyclePrimary {
    0%, 20% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1.05) saturate(1.05);
        box-shadow: 0 14px 34px rgba(0,0,0,0.22);
        opacity: 1;
        z-index: 5;
    }
    33%, 53% {
        transform: translate(-50%, -50%) translate(calc(-1 * var(--circle-horizontal-offset)), calc(-1 * var(--circle-vertical-offset))) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 3;
    }
    66%, 86% {
        transform: translate(-50%, -50%) translate(var(--circle-horizontal-offset), var(--circle-vertical-offset)) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1.05) saturate(1.05);
        box-shadow: 0 14px 34px rgba(0,0,0,0.22);
        opacity: 1;
        z-index: 5;
    }
}

@keyframes cycleSecondary {
    0%, 20% {
        transform: translate(-50%, -50%) translate(calc(-1 * var(--circle-horizontal-offset)), calc(-1 * var(--circle-vertical-offset))) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 3;
    }
    33%, 53% {
        transform: translate(-50%, -50%) translate(var(--circle-horizontal-offset), var(--circle-vertical-offset)) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 2;
    }
    66%, 86% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1.05) saturate(1.05);
        box-shadow: 0 14px 34px rgba(0,0,0,0.22);
        opacity: 1;
        z-index: 5;
    }
    100% {
        transform: translate(-50%, -50%) translate(calc(-1 * var(--circle-horizontal-offset)), calc(-1 * var(--circle-vertical-offset))) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 3;
    }
}

@keyframes cycleTertiary {
    0%, 20% {
        transform: translate(-50%, -50%) translate(var(--circle-horizontal-offset), var(--circle-vertical-offset)) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 2;
    }
    33%, 53% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1.05) saturate(1.05);
        box-shadow: 0 14px 34px rgba(0,0,0,0.22);
        opacity: 1;
        z-index: 5;
    }
    66%, 86% {
        transform: translate(-50%, -50%) translate(calc(-1 * var(--circle-horizontal-offset)), calc(-1 * var(--circle-vertical-offset))) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 3;
    }
    100% {
        transform: translate(-50%, -50%) translate(var(--circle-horizontal-offset), var(--circle-vertical-offset)) scale(var(--circle-back-scale));
        filter: brightness(0.92) saturate(0.95);
        box-shadow: 0 6px 20px rgba(0,0,0,0.16);
        opacity: 0.7;
        z-index: 2;
    }
}

@keyframes sparklePrimary {
    0%, 20% {
        opacity: 0.95;
        transform: translate(0, 0) rotate(12deg);
    }
    33%, 86% {
        opacity: 0;
        transform: translate(-6px, 6px) rotate(-8deg);
    }
    100% {
        opacity: 0.95;
        transform: translate(0, 0) rotate(12deg);
    }
}

@keyframes sparkleSecondary {
    0%, 53% {
        opacity: 0;
        transform: translate(-6px, 6px) rotate(-8deg);
    }
    66%, 86% {
        opacity: 0.95;
        transform: translate(0, 0) rotate(12deg);
    }
    100% {
        opacity: 0;
        transform: translate(-6px, 6px) rotate(-8deg);
    }
}

@keyframes sparkleTertiary {
    0%, 20% {
        opacity: 0;
        transform: translate(-6px, 6px) rotate(-8deg);
    }
    33%, 53% {
        opacity: 0.95;
        transform: translate(0, 0) rotate(12deg);
    }
    66%, 100% {
        opacity: 0;
        transform: translate(-6px, 6px) rotate(-8deg);
    }
}


.circle-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.circle-photo::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
    z-index: 0;
}

.circle-photo::after {
    content: '✨';
    position: absolute;
    font-size: 36px;
    top: 24px;
    right: 28px;
    transform: translate(0, 0) rotate(0deg);
    z-index: 6;
    opacity: 0;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    pointer-events: none;
}

.circle-photo--primary::after {
    animation-name: sparklePrimary;
}

.circle-photo--secondary::after {
    animation-name: sparkleSecondary;
}

.circle-photo--tertiary::after {
    animation-name: sparkleTertiary;
}

.badge {
    position: absolute;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    left: -20px;
    background: var(--coral);
    color: var(--white);
    animation-delay: 0s;
}

.badge-2 {
    bottom: 60px;
    right: -30px;
    background: var(--green);
    color: var(--white);
    animation-delay: 1s;
}

.badge-3 {
    top: 140px;
    left: -40px;
    background: var(--blue);
    color: var(--white);
    animation-delay: 2s;
}

/* Wave divider */
.wave-divider {
    position: relative;
    height: 60px;
    background: var(--cream);
}

.wave-divider svg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-family: 'Zen Maru Gothic', 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--ink);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Card */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    transition: all 0.2s ease-out;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Feature cards grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    transition: all 0.2s ease-out;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.icon-speech {
    background: linear-gradient(135deg, var(--coral), #FF6B9D);
}

.icon-speech::before {
    content: 'A-Z';
}

.icon-strength {
    background: linear-gradient(135deg, var(--blue), #4FACFE);
}

.icon-strength::before {
    content: '💪';
    font-size: 32px;
}

.icon-smile {
    background: linear-gradient(135deg, var(--yellow), #FDB44B);
}

.icon-smile::before {
    content: '★';
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Highlight box */
.highlight-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    margin: 32px 0;
}

.highlight-box h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--coral);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* List styling */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 16px 16px 16px 50px;
    margin: 12px 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.2s ease-out;
}

.styled-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    background: var(--green);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.strong-text {
    font-weight: 700;
    color: var(--coral);
}

.strong-text2 {
    font-weight: 700;
    color: var(--blue);
}

/* Class rhythm stepper */
.rhythm-stepper {
    display: flex;
    justify-content: space-between;
    margin: 48px 0;
    position: relative;
}

.rhythm-stepper::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--blue), var(--coral));
    z-index: 0;
}

.rhythm-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.rhythm-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--blue);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    color: var(--blue);
}

.rhythm-step:nth-child(1) .rhythm-node::before { content: '1'; }
.rhythm-step:nth-child(2) .rhythm-node::before { content: '2'; }
.rhythm-step:nth-child(3) .rhythm-node::before { content: '3'; }
.rhythm-step:nth-child(4) .rhythm-node::before { content: '4'; }
.rhythm-step:nth-child(5) .rhythm-node::before { content: '5'; }

.rhythm-step:nth-child(1) .rhythm-node { border-color: var(--blue); color: var(--blue); }
.rhythm-step:nth-child(2) .rhythm-node { border-color: var(--green); color: var(--green); }
.rhythm-step:nth-child(3) .rhythm-node { border-color: var(--yellow); color: #E5A820; background: #FFFBF0; }
.rhythm-step:nth-child(4) .rhythm-node { border-color: var(--coral); color: var(--coral); }
.rhythm-step:nth-child(5) .rhythm-node { border-color: var(--lilac); color: var(--lilac); }

.rhythm-step h4 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.rhythm-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Milestone badge */
.milestone {
    background: linear-gradient(135deg, var(--coral), var(--yellow));
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 24px rgba(255, 134, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.milestone::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.milestone::after {
    content: '★';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 60px;
    color: rgba(255,255,255,0.4);
    font-weight: 900;
}

.milestone h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 900;
}

.milestone p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Promise tiles */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.promise-tile {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.2s ease-out;
}

.promise-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.promise-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.icon-shield {
    background: linear-gradient(135deg, var(--green), #8BC34A);
}

.icon-shield::before {
    content: '✓';
    font-size: 40px;
}

.icon-people {
    background: linear-gradient(135deg, var(--blue), #4FACFE);
}

.icon-people::before {
    content: '6';
    font-size: 36px;
}

.icon-chat {
    background: linear-gradient(135deg, var(--coral), #FF6B9D);
}

.icon-chat::before {
    content: 'EN';
    font-size: 24px;
    font-weight: 900;
}

.promise-tile h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

/* Stage cards */
.stage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.stage-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--blue);
    transition: all 0.2s ease-out;
}

.stage-card:nth-child(2) {
    border-top-color: var(--green);
}

.stage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.stage-card h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

/* Lilac background section */
.lilac-bg {
    background: linear-gradient(135deg, rgba(191, 160, 255, 0.15), rgba(191, 160, 255, 0.05));
    position: relative;
}

/* Final CTA */
.final-cta {
    background: var(--coral);
    padding: 80px 32px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -50px;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

.final-cta::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -30px;
    right: 15%;
    animation: float 12s ease-in-out infinite reverse;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.btn-cta-large {
    background: var(--white);
    color: var(--coral);
    font-size: 1.2rem;
    padding: 18px 48px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-cta-large:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* Footer */
.footer {
    background: var(--cream);
    padding: 60px 32px 32px;
    text-align: center;
    border-top: 2px solid rgba(0,0,0,0.08);
}

.footer-message {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--ink);
    max-width: 800px;
    margin: 0 auto 32px;
}

.footer-message span {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--coral);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-bottom {
    font-size: 0.9rem;
    color: #666;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--coral);
    padding: 16px 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.sticky-cta-text {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.sticky-cta .btn-pill {
    background: var(--white);
    color: var(--coral);
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Confetti */
.confetti-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: visible;
    z-index: 2000;
}

.confetti-rocket {
    position: absolute;
    width: 14px;
    height: 38px;
    background: linear-gradient(180deg, #ffffff, rgba(255,255,255,0.2));
    border-radius: 8px 8px 16px 16px;
    box-shadow: 0 0 18px rgba(255,255,255,0.6), 0 0 32px rgba(255,148,109,0.5);
    opacity: 0;
    will-change: transform, opacity;
}

.confetti-rocket::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 16px;
    background: linear-gradient(180deg, rgba(255,200,80,0.9), rgba(255,91,65,0));
    border-radius: 999px;
}

.confetti-piece {
    position: absolute;
    width: 12px;
    height: 18px;
    border-radius: 4px;
    opacity: 0;
    will-change: transform, opacity;
}

.confetti-flash {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,200,120,0.4) 45%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    .circle-stack .circle-photo,
    .circle-stack .circle-photo::after {
        animation: none !important;
    }

    .circle-photo--primary {
        transform: translate(-50%, -50%) scale(1);
        z-index: 5;
        opacity: 1;
        filter: brightness(1.05) saturate(1.05);
    }

    .circle-photo--secondary {
        transform: translate(-50%, -50%) translate(calc(-1 * var(--circle-horizontal-offset)), calc(-1 * var(--circle-vertical-offset))) scale(var(--circle-back-scale));
        z-index: 4;
        opacity: 0.7;
        filter: brightness(0.92) saturate(0.95);
    }

    .circle-photo--tertiary {
        transform: translate(-50%, -50%) translate(var(--circle-horizontal-offset), var(--circle-vertical-offset)) scale(var(--circle-back-scale));
        z-index: 3;
        opacity: 0.7;
        filter: brightness(0.92) saturate(0.95);
    }

    .circle-photo--primary::after {
        opacity: 0.9;
    }

    .circle-photo--secondary::after,
    .circle-photo--tertiary::after {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-images {
        order: -1;
    }

    .hero-ctas {
        justify-content: center;
    }

    .circle-stack {
        max-width: 260px;
        min-height: 260px;
    }

    .circle-stack .circle-photo {
        position: static;
        transform: none;
        animation: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        opacity: 1;
        filter: none;
    }

    .circle-stack .circle-photo::after {
        animation: none;
        opacity: 0.9;
    }

    .circle-photo--secondary,
    .circle-photo--tertiary {
        display: none;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .stage-grid {
        grid-template-columns: 1fr;
    }

    .rhythm-stepper {
        flex-direction: column;
        gap: 32px;
    }

    .rhythm-stepper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-quote {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .circle-photo {
        width: 200px;
        height: 200px;
    }

    .circle-photo::before {
        font-size: 36px;
    }

    .hero-images {
        min-height: 280px;
        padding: 20px;
    }

    .circle-stack {
        max-width: 220px;
        min-height: 220px;
    }

    .badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .badge-1 {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .badge-2 {
        bottom: 30px;
        right: 10px;
        left: auto;
    }

    .badge-3 {
        top: 100px;
        left: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .sticky-cta {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-quote {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 20px;
    }

    .btn-pill {
        padding: 10px 24px;
        font-size: 14px;
    }

    .circle-photo {
        width: 180px;
        height: 180px;
    }

    .circle-photo::after {
        font-size: 36px;
    }

    .hero-images {
        min-height: 260px;
    }

    .badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .badge-1 {
        top: 5px;
    }

    .badge-2 {
        bottom: 20px;
        right: 5px;
    }

    .badge-3 {
        top: 90px;
        left: 5px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
