*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --cream: #fdf9f4;
    --lavender: #c8bfe7;
    --lav-deep: #8b7cba;
    --peach: #f0c9b8;
    --peach-deep: #c98472;
    --gold: #d9bc94;
    --ink: #1c1624;
    --ink-mid: #3d3250;
    --ink-soft: #7b6e8f;
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.75);
    --r-pill: 999px;
    --r-card: 28px;
    --shadow-card: 0 24px 72px rgba(46, 37, 53, 0.13);
    --spring: cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes float-phone {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
@keyframes float-card-1 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes float-card-2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes float-card-3 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
@keyframes orb-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 15px) scale(0.97);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}
@keyframes pulse-dot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}
@keyframes bar-grow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-8px);
    }
    30% {
        transform: translateX(8px);
    }
    45% {
        transform: translateX(-6px);
    }
    60% {
        transform: translateX(6px);
    }
    75% {
        transform: translateX(-3px);
    }
    90% {
        transform: translateX(3px);
    }
}
@keyframes spin-loader {
    to {
        transform: rotate(360deg);
    }
}
@keyframes confetti-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--cx), var(--cy)) scale(0);
        opacity: 0;
    }
}
@keyframes glow-rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes number-flip {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
html {
    scroll-behavior: smooth;
}
body.page-funnel {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    color: var(--ink);
    background: var(--ink);
    overflow-x: hidden;
}
#progress-bar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(20 15 28 / 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgb(255 255 255 / 0.07);
}
.progress-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    padding: 13px 24px 11px;
    gap: 16px;
}
.progress-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}
.stepper {
    display: flex;
    align-items: flex-start;
    flex: 1;
    justify-content: center;
    gap: 0;
}
.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    position: relative;
}
.stepper-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    transition: all 0.35s var(--spring);
    background: rgb(255 255 255 / 0.06);
    border: 1.5px solid rgb(255 255 255 / 0.12);
    color: rgb(255 255 255 / 0.25);
    flex-shrink: 0;
}
.stepper-step.done .stepper-circle {
    background: rgb(139 124 186 / 0.18);
    border-color: var(--lav-deep);
    color: var(--lavender);
}
.stepper-step.active .stepper-circle {
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    border-color: #fff0;
    color: #fff;
    width: 32px;
    height: 32px;
    font-size: 13px;
    box-shadow:
        0 0 0 4px rgb(139 124 186 / 0.2),
        0 4px 18px rgb(139 124 186 / 0.45);
}
.stepper-label {
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 0.18);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: all 0.3s;
    line-height: 1;
}
.stepper-step.done .stepper-label {
    color: rgb(255 255 255 / 0.38);
}
.stepper-step.active .stepper-label {
    color: var(--lavender);
    font-weight: 500;
    letter-spacing: 0.04em;
}
.stepper-connector {
    height: 1.5px;
    min-width: 10px;
    max-width: 44px;
    flex: 1;
    background: rgb(255 255 255 / 0.07);
    margin: 0 2px;
    margin-top: 13px;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}
.stepper-connector-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep));
    width: 0%;
    transition: width 0.5s var(--spring);
}
.step-badge {
    background: linear-gradient(135deg, rgb(139 124 186 / 0.22), rgb(201 132 114 / 0.16));
    border: 1px solid rgb(200 191 231 / 0.22);
    border-radius: var(--r-pill);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 400;
    color: var(--lavender);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.progress-step-name-row {
    display: none;
    padding: 5px 24px 8px;
    font-size: 12px;
    color: var(--lavender);
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.85;
}
.progress-track {
    height: 3px;
    background: rgb(255 255 255 / 0.05);
    position: relative;
    overflow: hidden;
}
.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep));
    width: 5%;
    transition: width 0.55s var(--spring);
}
@media (max-width: 640px) {
    .stepper-label {
        display: none;
    }
    .stepper-circle {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    .stepper-step.active .stepper-circle {
        width: 26px;
        height: 26px;
    }
    .stepper-connector {
        margin-top: 11px;
    }
    .progress-step-name-row {
        display: block;
    }
    .progress-inner {
        padding: 10px 16px 8px;
        gap: 10px;
    }
    .progress-logo {
        font-size: 15px;
    }
    .step-badge {
        font-size: 12px;
        padding: 5px 11px;
    }
}
@media (max-width: 400px) {
    .stepper {
        display: none;
    }
    .step-badge {
        display: block;
    }
    .progress-step-name-row {
        display: block;
    }
}
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    animation: orb-drift 14s ease-in-out infinite;
    z-index: 0;
}
.orb-lav {
    background: radial-gradient(circle, var(--lavender), transparent 70%);
}
.orb-peach {
    background: radial-gradient(circle, var(--peach), transparent 70%);
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 380px;
    height: 380px;
    bottom: -60px;
    left: -60px;
    animation-delay: -5s;
}
#step-1-hero {
    position: relative;
    min-height: 100vh;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 72px;
    overflow: hidden;
    z-index: 1;
}
.hero-inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(200 191 231 / 0.1);
    border: 1px solid rgb(200 191 231 / 0.22);
    border-radius: var(--r-pill);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 400;
    color: var(--lavender);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--lavender);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
.hero-headline {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5.5vw, 88px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgb(255 255 255 / 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.feature-pill {
    background: rgb(255 255 255 / 0.06);
    border: 1px solid rgb(255 255 255 / 0.11);
    border-radius: var(--r-pill);
    padding: 8px 16px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: var(--r-pill);
    padding: 18px 36px;
    cursor: pointer;
    transition:
        transform 0.3s var(--spring),
        box-shadow 0.3s;
    box-shadow: 0 8px 32px rgb(139 124 186 / 0.4);
    margin-bottom: 20px;
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgb(139 124 186 / 0.55);
}
.social-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgb(255 255 255 / 0.4);
}
.social-strip .stars {
    color: #f0c060;
    letter-spacing: 1px;
}
.social-strip .sep {
    opacity: 0.25;
}
.hero-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 640px;
    overflow: visible;
}
.phone-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.phone-glow-primary {
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgb(139 124 186 / 0.34) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    filter: blur(36px);
    border-radius: 50%;
}
.phone-glow-secondary {
    position: absolute;
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, rgb(201 132 114 / 0.22) 0%, transparent 70%);
    bottom: 8%;
    left: 40%;
    transform: translateX(-50%);
    filter: blur(44px);
    border-radius: 50%;
}
.phone-glow-accent {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgb(217 188 148 / 0.18) 0%, transparent 70%);
    top: 18%;
    right: 18%;
    filter: blur(28px);
    border-radius: 50%;
}
.iphone-tilt {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.7s var(--spring);
}
.iphone-float {
    position: relative;
    animation: float-phone 7s ease-in-out infinite;
}
.iphone-frame {
    position: relative;
    width: 272px;
    height: 588px;
    background: linear-gradient(148deg, #3e3848 0%, #272035 35%, #1c1828 65%, #110f18 100%);
    border-radius: 52px;
    box-shadow:
        0 0 0 1px rgb(255 255 255 / 0.13),
        0 0 0 2px rgb(255 255 255 / 0.04),
        inset 0 1.5px 0 rgb(255 255 255 / 0.12),
        0 60px 140px rgb(0 0 0 / 0.75),
        0 24px 60px rgb(0 0 0 / 0.5),
        0 6px 20px rgb(0 0 0 / 0.35),
        0 0 90px rgb(139 124 186 / 0.2);
    transition: box-shadow 0.5s;
}
.iphone-btn-mute {
    position: absolute;
    left: -1.5px;
    top: 76px;
    width: 2.5px;
    height: 26px;
    background: linear-gradient(180deg, #3e3848, #222030);
    border-radius: 0 2px 2px 0;
    box-shadow: -1px 0 2px rgb(255 255 255 / 0.06);
}
.iphone-btn-vol-up {
    position: absolute;
    left: -1.5px;
    top: 116px;
    width: 2.5px;
    height: 40px;
    background: linear-gradient(180deg, #3e3848, #222030);
    border-radius: 0 2px 2px 0;
    box-shadow: -1px 0 2px rgb(255 255 255 / 0.06);
}
.iphone-btn-vol-down {
    position: absolute;
    left: -1.5px;
    top: 166px;
    width: 2.5px;
    height: 40px;
    background: linear-gradient(180deg, #3e3848, #222030);
    border-radius: 0 2px 2px 0;
    box-shadow: -1px 0 2px rgb(255 255 255 / 0.06);
}
.iphone-btn-power {
    position: absolute;
    right: -1.5px;
    top: 134px;
    width: 2.5px;
    height: 66px;
    background: linear-gradient(180deg, #3e3848, #222030);
    border-radius: 2px 0 0 2px;
    box-shadow: 1px 0 2px rgb(255 255 255 / 0.06);
}
.iphone-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #0a0812;
    border-radius: 44px;
    overflow: hidden;
}
.screen-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(162deg, #19112a 0%, #0a0812 50%, #110e1c 100%);
}
.iphone-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}
.island-dot {
    width: 10px;
    height: 10px;
    background: #181818;
    border-radius: 50%;
    border: 1.5px solid rgb(255 255 255 / 0.04);
}
.screen-statusbar {
    position: relative;
    z-index: 5;
    padding: 8px 18px 0;
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.status-time {
    font-size: 13px;
    font-weight: 600;
    color: rgb(255 255 255 / 0.9);
    font-family: -apple-system, "SF Pro Display", sans-serif;
    letter-spacing: -0.3px;
}
.status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 11px;
    color: rgb(255 255 255 / 0.7);
}
.app-header {
    position: relative;
    z-index: 5;
    padding: 9px 16px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.greeting-label {
    font-size: 9px;
    color: rgb(255 255 255 / 0.35);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1px;
}
.greeting-name {
    font-size: 14px;
    font-weight: 400;
    color: rgb(255 255 255 / 0.9);
    font-family: -apple-system, sans-serif;
    letter-spacing: -0.2px;
}
.app-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 2px 8px rgb(139 124 186 / 0.44);
}
.screen-content {
    position: relative;
    z-index: 5;
    padding: 0 11px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.app-card {
    background: rgb(255 255 255 / 0.055);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 14px;
    padding: 11px 12px;
    flex-shrink: 0;
}
.app-card-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}
.app-card-title {
    font-size: 9px;
    font-weight: 400;
    color: rgb(255 255 255 / 0.38);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.card-badge {
    font-size: 8px;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.badge-lav {
    background: rgb(200 191 231 / 0.18);
    color: var(--lavender);
    border: 1px solid rgb(200 191 231 / 0.22);
}
.badge-green {
    background: rgb(100 200 120 / 0.18);
    color: #90d4a0;
    border: 1px solid rgb(100 200 120 / 0.22);
}
.badge-gold {
    background: rgb(217 188 148 / 0.18);
    color: var(--gold);
    border: 1px solid rgb(217 188 148 / 0.22);
}
.sleep-value-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 7px;
}
.sleep-big {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    font-family: -apple-system, sans-serif;
    letter-spacing: -0.5px;
}
.sleep-min {
    font-size: 13px;
    color: rgb(255 255 255 / 0.5);
}
.sleep-trend {
    font-size: 10px;
    color: #90d4a0;
    font-weight: 400;
}
.sleep-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}
.sleep-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    height: var(--h);
    background: linear-gradient(180deg, rgb(200 191 231 / 0.65) 0%, rgb(200 191 231 / 0.25) 100%);
    transform-origin: bottom;
    animation: bar-grow 0.8s ease-out forwards;
    animation-delay: var(--d);
    transform: scaleY(0);
}
.sleep-bar-today {
    background: linear-gradient(180deg, var(--lavender) 0%, rgb(200 191 231 / 0.55) 100%);
}
.ms-chips-row {
    display: flex;
    gap: 5px;
}
.ms-chip {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
.ms-done {
    background: rgb(100 200 120 / 0.15);
    color: #90d4a0;
    border: 1px solid rgb(100 200 120 / 0.18);
}
.ms-soon {
    background: rgb(200 191 231 / 0.11);
    color: var(--lavender);
    border: 1px solid rgb(200 191 231 / 0.15);
}
.ai-insight-card {
    background: linear-gradient(135deg, rgb(139 124 186 / 0.16), rgb(201 132 114 / 0.11));
    border: 1px solid rgb(200 191 231 / 0.16);
}
.ai-insight-hdr {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}
.ai-spark-icon {
    font-size: 11px;
}
.ai-insight-label {
    font-size: 9px;
    font-weight: 500;
    color: var(--lavender);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex: 1;
}
.ai-new-badge {
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 20px;
    background: rgb(200 191 231 / 0.2);
    color: var(--lavender);
    border: 1px solid rgb(200 191 231 / 0.24);
}
.ai-insight-text {
    font-size: 10px;
    color: rgb(255 255 255 / 0.68);
    line-height: 1.5;
}
.growth-card {
    padding: 10px 12px;
}
.growth-track {
    height: 5px;
    background: rgb(255 255 255 / 0.07);
    border-radius: 3px;
    margin-top: 4px;
    position: relative;
    overflow: visible;
}
.growth-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 68%;
    background: linear-gradient(90deg, rgb(100 200 120 / 0.55), #90d4a0);
    border-radius: 3px;
    transform-origin: left;
    transform: scaleX(0);
    animation: bar-grow 1.2s ease-out 0.9s forwards;
}
.growth-marker {
    position: absolute;
    top: 50%;
    left: 68%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #90d4a0;
    border-radius: 50%;
    border: 2px solid #0a0812;
    box-shadow: 0 0 8px rgb(100 200 120 / 0.55);
}
.phone-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgb(10 8 18 / 0.96);
    border-top: 1px solid rgb(255 255 255 / 0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 4px 8px;
    z-index: 10;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}
.nav-icon {
    font-size: 16px;
    line-height: 1;
}
.nav-label {
    font-size: 8px;
    color: rgb(255 255 255 / 0.26);
    font-family: -apple-system, sans-serif;
    transition: color 0.2s;
}
.nav-item.nav-active .nav-label {
    color: var(--lavender);
}
.home-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgb(255 255 255 / 0.28);
    border-radius: 3px;
    z-index: 11;
}
.iphone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52%;
    background: linear-gradient(
        152deg,
        rgb(255 255 255 / 0.11) 0%,
        rgb(255 255 255 / 0.05) 20%,
        rgb(255 255 255 / 0.01) 40%,
        transparent 55%
    );
    border-radius: 44px 44px 0 0;
    pointer-events: none;
    z-index: 20;
}
.float-chip {
    position: absolute;
    background: rgb(16 12 24 / 0.78);
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 14px;
    padding: 9px 13px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    box-shadow:
        0 8px 32px rgb(0 0 0 / 0.38),
        0 2px 8px rgb(0 0 0 / 0.28),
        inset 0 1px 0 rgb(255 255 255 / 0.09);
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.55s var(--spring),
        transform 0.55s var(--spring);
    z-index: 5;
}
.float-chip.show {
    opacity: 1;
    transform: translateY(0);
}
.chip-icon {
    font-size: 15px;
    flex-shrink: 0;
}
.chip-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.chip-label {
    font-size: 9px;
    color: rgb(255 255 255 / 0.36);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.chip-value {
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 0.88);
    letter-spacing: -0.1px;
}
.chip-sleep {
    top: 8%;
    left: -56%;
    animation: float-card-1 5.5s ease-in-out infinite;
    border-color: rgb(200 191 231 / 0.24);
}
.chip-growth {
    top: 24%;
    right: -53%;
    animation: float-card-2 6.5s ease-in-out infinite;
    animation-delay: 0.8s;
    border-color: rgb(100 200 120 / 0.24);
}
.chip-ai {
    bottom: 25%;
    left: -60%;
    animation: float-card-3 5.2s ease-in-out infinite;
    animation-delay: 1.5s;
    border-color: rgb(217 188 148 / 0.24);
}
.chip-milestone {
    bottom: 8%;
    right: -51%;
    animation: float-card-1 7s ease-in-out infinite;
    animation-delay: 2.1s;
    border-color: rgb(240 201 184 / 0.24);
}
#step-1b {
    background: var(--cream);
    padding: 100px 24px 110px;
    position: relative;
    z-index: 1;
}
.section-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.section-label {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lav-deep);
    margin-bottom: 14px;
}
.section-headline {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 52px;
    line-height: 1.15;
}
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.feature-card {
    background: #fff;
    border-radius: var(--r-card);
    padding: 32px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(28px);
    transition:
        transform 0.3s var(--spring),
        box-shadow 0.3s;
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.65s,
        transform 0.65s var(--spring),
        box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgb(46 37 53 / 0.18);
}
.feature-card-icon {
    font-size: 32px;
    margin-bottom: 14px;
}
.feature-card-accent {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 14px;
}
.accent-lav {
    background: var(--lavender);
}
.accent-blue {
    background: #9ec5c5;
}
.accent-peach {
    background: var(--peach-deep);
}
.feature-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.68;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-card);
    padding: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(28px);
}
.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.65s,
        transform 0.65s var(--spring);
}
.testimonial-stars {
    color: #f0c060;
    font-size: 13px;
    margin-bottom: 12px;
}
.testimonial-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.55;
    margin-bottom: 16px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}
.av-1 {
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
}
.av-2 {
    background: linear-gradient(135deg, #6b8fa8, #4a7f6f);
}
.av-3 {
    background: linear-gradient(135deg, var(--peach-deep), var(--gold));
}
.author-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-mid);
}
#funnel-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--ink);
    transform: translateY(100%);
    transition: transform 0.6s var(--spring);
    overflow: hidden;
}
#funnel-panel.open {
    transform: translateY(0);
}
.panel-orb-1 {
    width: 420px;
    height: 420px;
    top: -100px;
    right: -60px;
    animation-delay: 0s;
}
.panel-orb-2 {
    width: 360px;
    height: 360px;
    bottom: -80px;
    left: -50px;
    animation-delay: -6s;
}
.step-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 88px 24px 72px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateX(40px);
    pointer-events: none;
    transition:
        opacity 0.4s var(--spring),
        transform 0.4s var(--spring);
    z-index: 1;
}
.step-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.step-panel.exit-left {
    opacity: 0;
    transform: translateX(-40px);
}
.panel-card {
    background: rgb(255 255 255 / 0.055);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 36px;
    padding: 48px;
    width: 100%;
    max-width: 520px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    flex-shrink: 0;
    margin: auto 0;
}
.btn-back {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgb(255 255 255 / 0.07);
    border: 1px solid rgb(255 255 255 / 0.11);
    border-radius: var(--r-pill);
    padding: 8px 16px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.55);
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.2s;
}
.btn-back:hover {
    color: #fff;
    background: rgb(255 255 255 / 0.12);
}
.step-indicator {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
    justify-content: center;
}
.step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.18);
    transition: all 0.3s;
}
.step-dot.active {
    background: var(--lavender);
    width: 20px;
    border-radius: 3px;
}
.panel-headline {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 14px;
    text-align: center;
}
.panel-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgb(255 255 255 / 0.5);
    line-height: 1.68;
    text-align: center;
    margin-bottom: 32px;
}
.form-group {
    position: relative;
    margin-bottom: 14px;
}
.form-group label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 15px;
    color: rgb(255 255 255 / 0.35);
    pointer-events: none;
    transition: all 0.22s;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
}
.form-group.has-value label,
.form-group:focus-within label {
    top: 14px;
    transform: translateY(0);
    font-size: 12px;
    color: var(--lavender);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.form-group input,
.form-group select {
    width: 100%;
    background: rgb(255 255 255 / 0.07);
    border: 1.5px solid rgb(255 255 255 / 0.13);
    border-radius: 16px;
    padding: 28px 20px 10px;
    font-size: 15px;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    color: #fff;
    outline: none;
    transition:
        border-color 0.22s,
        box-shadow 0.22s;
    appearance: none;
    -webkit-appearance: none;
}
.form-group select option {
    background: var(--ink-mid);
    color: #fff;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--lav-deep);
    box-shadow: 0 0 0 3px rgb(139 124 186 / 0.18);
}
.form-group.error input,
.form-group.error select {
    border-color: #e07070;
    animation: shake 0.4s ease;
}
.form-error-msg {
    font-size: 12px;
    color: #e07070;
    margin-top: 4px;
    padding-left: 20px;
    display: none;
}
.form-group.error .form-error-msg {
    display: block;
}
.btn-full {
    width: 100%;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    border: none;
    border-radius: var(--r-pill);
    height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition:
        transform 0.3s var(--spring),
        box-shadow 0.3s;
    box-shadow: 0 8px 32px rgb(139 124 186 / 0.32);
    margin-top: 10px;
}
.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgb(139 124 186 / 0.48);
}
.privacy-note {
    text-align: center;
    font-size: 12px;
    color: rgb(255 255 255 / 0.3);
    margin-top: 14px;
}
.preview-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}
.preview-card {
    background: rgb(255 255 255 / 0.055);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 18px;
    padding: 16px 18px;
}
.preview-card-label {
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.preview-card-content {
    font-size: 13px;
    color: rgb(255 255 255 / 0.75);
    line-height: 1.55;
}
.preview-card-lav {
    border-left: 3px solid var(--lavender);
}
.preview-card-peach {
    border-left: 3px solid var(--peach);
}
.preview-card-gold {
    border-left: 3px solid var(--gold);
}
.milestone-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.m-chip {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--r-pill);
}
.m-chip-done {
    background: rgb(100 180 120 / 0.18);
    color: #a8e0b0;
    border: 1px solid rgb(100 180 120 / 0.22);
}
.m-chip-soon {
    background: rgb(200 191 231 / 0.14);
    color: var(--lavender);
    border: 1px solid rgb(200 191 231 / 0.18);
}
.m-chip-upcoming {
    background: rgb(255 255 255 / 0.04);
    color: rgb(255 255 255 / 0.35);
    border: 1px solid rgb(255 255 255 / 0.07);
}
.insight-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.insight-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.insight-label {
    font-size: 12px;
    color: rgb(255 255 255 / 0.55);
}
.insight-bar-track {
    height: 4px;
    background: rgb(255 255 255 / 0.09);
    border-radius: 2px;
    overflow: hidden;
}
.insight-bar-fill {
    height: 100%;
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
    animation: bar-grow 1s ease-out 0.3s forwards;
}
.bar-lav {
    background: linear-gradient(90deg, var(--lav-deep), var(--lavender));
}
.bar-peach {
    background: linear-gradient(90deg, var(--peach-deep), var(--peach));
}
#step-4 .panel-card {
    max-width: 680px;
}
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.5);
}
.toggle-switch {
    width: 44px;
    height: 24px;
    background: rgb(255 255 255 / 0.11);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    border: none;
    transition: background 0.3s;
    flex-shrink: 0;
}
.toggle-switch::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
}
.toggle-switch.on {
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
}
.toggle-switch.on::after {
    transform: translateX(20px);
}
.save-badge {
    background: rgb(100 180 120 / 0.17);
    color: #a8e0b0;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: var(--r-pill);
    border: 1px solid rgb(100 180 120 / 0.22);
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0 0 16px;
}
.plan-card {
    border-radius: 22px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}
.plan-free {
    background: rgb(255 255 255 / 0.055);
    border: 1px solid rgb(255 255 255 / 0.11);
}
.plan-pro {
    background: #2e2535;
    border: 2px solid #fff0;
}
.plan-pro::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep), var(--gold), var(--lav-deep));
    background-size: 300% 300%;
    animation: glow-rotate 4s linear infinite;
    z-index: -1;
}
.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.plan-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 4px;
}
.plan-price-wrap {
    height: 36px;
    overflow: hidden;
    margin-bottom: 14px;
}
.plan-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--cream);
}
.plan-price-period {
    font-size: 13px;
    color: rgb(255 255 255 / 0.4);
}
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.plan-feature {
    font-size: 12px;
    color: rgb(255 255 255 / 0.6);
    display: flex;
    align-items: center;
    gap: 7px;
}
.plan-feature .check {
    color: #a8e0b0;
}
.plan-feature .cross {
    color: rgb(255 255 255 / 0.2);
}
.btn-plan-free {
    width: 100%;
    background: #fff0;
    border: 1.5px solid rgb(255 255 255 / 0.18);
    color: rgb(255 255 255 / 0.55);
    border-radius: var(--r-pill);
    padding: 11px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-plan-free:hover {
    border-color: rgb(255 255 255 / 0.38);
    color: #fff;
}
.btn-plan-pro {
    width: 100%;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    border: none;
    color: #fff;
    border-radius: var(--r-pill);
    padding: 13px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 6px 24px rgb(139 124 186 / 0.32);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    line-height: 1.4;
    text-align: center;
}
.btn-plan-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgb(139 124 186 / 0.48);
}
.btn-plan-pro small {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}
.security-note {
    text-align: center;
    font-size: 12px;
    color: rgb(255 255 255 / 0.25);
    margin-top: 6px;
}
#step-5 .payment-outer {
    width: 100%;
    max-width: 720px;
    flex-shrink: 0;
    margin: auto 0;
}
.payment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 720px;
}
.payment-panel-header {
    width: 100%;
    max-width: 720px;
    margin-bottom: 20px;
    position: relative;
}
.order-summary {
    background: rgb(255 255 255 / 0.04);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 24px;
    padding: 28px;
}
.order-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 4px;
}
.order-period {
    font-size: 13px;
    color: rgb(255 255 255 / 0.38);
    margin-bottom: 18px;
}
.order-divider {
    border: none;
    border-top: 1px solid rgb(255 255 255 / 0.07);
    margin: 14px 0;
}
.order-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order-feature {
    font-size: 13px;
    color: rgb(255 255 255 / 0.6);
    display: flex;
    gap: 8px;
    align-items: center;
}
.order-total {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgb(255 255 255 / 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-total-label {
    font-size: 13px;
    color: rgb(255 255 255 / 0.45);
}
.order-total-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: var(--cream);
}
.payment-form-card {
    background: rgb(255 255 255 / 0.055);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 24px;
    padding: 28px;
    position: relative;
}
.payment-form-title {
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 0.38);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.card-logos {
    display: flex;
    gap: 6px;
    margin: 10px 0 4px;
}
.card-logo {
    background: rgb(255 255 255 / 0.07);
    border: 1px solid rgb(255 255 255 / 0.11);
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 11px;
    color: rgb(255 255 255 / 0.45);
}
.payment-secure {
    font-size: 12px;
    color: rgb(255 255 255 / 0.27);
    margin-top: 8px;
    text-align: center;
}
.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgb(28 22 36 / 0.88);
    border-radius: inherit;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.loading-overlay.show {
    display: flex;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgb(200 191 231 / 0.18);
    border-top-color: var(--lav-deep);
    border-radius: 50%;
    animation: spin-loader 0.8s linear infinite;
}
.step-6-inner {
    text-align: center;
    max-width: 480px;
}
.confetti-wrap {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 200;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    animation: confetti-burst 1.5s ease-out forwards;
    animation-delay: var(--delay);
}
.confirm-card {
    background: rgb(200 191 231 / 0.09);
    border: 1px solid rgb(200 191 231 / 0.17);
    border-radius: 20px;
    padding: 22px;
    margin: 22px 0;
    text-align: left;
}
.confirm-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.7);
    margin-bottom: 10px;
}
.confirm-item:last-child {
    margin-bottom: 0;
}
.confirm-check {
    color: #a8e0b0;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}
.whats-next {
    margin: 18px 0;
    text-align: left;
}
.next-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(255 255 255 / 0.32);
    margin-bottom: 12px;
}
.next-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.6);
}
.next-item-day {
    color: var(--lavender);
    font-weight: 400;
    min-width: 52px;
    flex-shrink: 0;
}
.download-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 22px 0 8px;
}
.btn-download {
    flex: 1;
    max-width: 175px;
    background: rgb(255 255 255 / 0.07);
    border: 1px solid rgb(255 255 255 / 0.13);
    border-radius: 14px;
    padding: 13px 18px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.btn-download:hover {
    background: rgb(255 255 255 / 0.12);
    transform: translateY(-2px);
}
.qr-placeholder {
    width: 90px;
    height: 90px;
    border: 2px dashed rgb(255 255 255 / 0.17);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgb(255 255 255 / 0.28);
    margin: 10px auto;
    text-align: center;
    line-height: 1.4;
}
.share-section {
    margin-top: 18px;
}
.share-title {
    font-size: 14px;
    color: rgb(255 255 255 / 0.4);
    margin-bottom: 10px;
}
.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.btn-share {
    flex: 1;
    max-width: 160px;
    border-radius: var(--r-pill);
    padding: 10px 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.btn-whatsapp {
    background: rgb(37 211 102 / 0.14);
    border: 1px solid rgb(37 211 102 / 0.22) !important;
    color: #4de07a;
}
.btn-copy {
    background: rgb(255 255 255 / 0.06);
    border: 1px solid rgb(255 255 255 / 0.11) !important;
    color: rgb(255 255 255 / 0.55);
}
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-text {
        order: 2;
    }
    .hero-phone-wrap {
        order: 1;
        min-height: 480px;
    }
    .iphone-frame {
        width: 236px;
        height: 510px;
        border-radius: 46px;
    }
    .iphone-screen {
        border-radius: 38px;
    }
    .iphone-island {
        width: 94px;
        height: 28px;
    }
    .float-chip {
        display: none;
    }
    .hero-sub {
        max-width: 100%;
    }
    .feature-pills {
        justify-content: center;
    }
    .btn-primary {
        margin: 0 auto 20px;
    }
    .social-strip {
        justify-content: center;
    }
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .payment-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .hero-headline {
        font-size: 48px;
    }
    .hero-phone-wrap {
        min-height: 420px;
    }
    .iphone-frame {
        width: 200px;
        height: 432px;
        border-radius: 40px;
    }
    .iphone-screen {
        border-radius: 32px;
    }
    .iphone-island {
        width: 80px;
        height: 24px;
        top: 10px;
    }
    .screen-statusbar {
        margin-top: 26px;
    }
    .sleep-big {
        font-size: 17px;
    }
    .panel-card {
        padding: 28px 20px;
        border-radius: 24px;
    }
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .qr-placeholder {
        display: none;
    }
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    .panel-headline {
        font-size: 34px;
    }
    #step-4 .panel-card {
        padding: 24px 16px;
    }
    #step-1b{padding: 60px 24px 60px;}
}
#fn-exit-modal {
    position: fixed;
    bottom: -320px;
    right: 24px;
    z-index: 10002;
    background: rgb(28 22 36 / 0.97);
    border: 1px solid rgb(200 191 231 / 0.2);
    border-radius: 22px;
    padding: 28px 30px;
    max-width: 310px;
    width: calc(100% - 48px);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 32px 80px rgb(0 0 0 / 0.52);
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: "DM Sans", sans-serif;
}
#fn-exit-modal.show {
    bottom: 24px;
}
#fn-exit-modal .fn-ex-x {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: rgb(255 255 255 / 0.3);
    font-size: 15px;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
}
#fn-exit-modal .fn-ex-x:hover {
    color: rgb(255 255 255 / 0.65);
}
#fn-exit-modal .fn-ex-moon {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
}
#fn-exit-modal .fn-ex-hl {
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 300;
    color: #fdf9f4;
    line-height: 1.25;
    margin-bottom: 8px;
}
#fn-exit-modal .fn-ex-sub {
    font-size: 13px;
    color: rgb(255 255 255 / 0.46);
    line-height: 1.6;
    margin-bottom: 20px;
}
#fn-exit-modal .fn-ex-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #8b7cba, #c98472);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 8px 28px rgb(139 124 186 / 0.38);
    margin-bottom: 10px;
}
#fn-exit-modal .fn-ex-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgb(139 124 186 / 0.55);
}
#fn-exit-modal .fn-ex-link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: rgb(255 255 255 / 0.3);
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: color 0.2s;
    padding: 4px 0;
}
#fn-exit-modal .fn-ex-link:hover {
    color: rgb(200 191 231 / 0.75);
}
.fn-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fn-reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fn-reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fn-reveal.fn-vis,
.fn-reveal-left.fn-vis,
.fn-reveal-right.fn-vis {
    opacity: 1;
    transform: none;
}
.fn-section-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.fn-label-light {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgb(200 191 231 / 0.6);
    margin-bottom: 14px;
    text-align: center;
}
.fn-label-dark {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lav-deep);
    margin-bottom: 14px;
    text-align: center;
}
.fn-h2-cream {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 62px;
}
.fn-h2-ink {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 62px;
}
.fn-h2-em {
    font-style: italic;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
@keyframes fn-bar-grow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}
@keyframes fn-fill-grow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
#fn-story {
    background: #0e0b16;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
.fn-story-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgb(200 191 231 / 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orb-drift 18s ease-in-out infinite;
}
.fn-story-orb-2 {
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgb(201 132 114 / 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orb-drift 22s ease-in-out infinite reverse;
}
.fn-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.fn-story-card {
    background: rgb(255 255 255 / 0.04);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 28px;
    padding: 36px 30px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s,
        border-color 0.3s;
}
.fn-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgb(0 0 0 / 0.4);
    border-color: rgb(200 191 231 / 0.18);
}
.fn-story-emoji {
    font-size: 30px;
    margin-bottom: 16px;
    display: block;
}
.fn-story-worry {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
    color: rgb(255 255 255 / 0.75);
    line-height: 1.55;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(255 255 255 / 0.07);
}
.fn-story-answer-tag {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lav-deep);
    margin-bottom: 8px;
}
.fn-story-answer {
    font-size: 14px;
    color: rgb(255 255 255 / 0.6);
    line-height: 1.7;
}
.fn-story-answer strong {
    color: var(--lavender);
    font-weight: 400;
}
#fn-daily {
    background: var(--cream);
    padding: 70px 24px;
}
.fn-daily-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fn-daily-card {
    background: #fff;
    border: 1px solid rgb(28 22 36 / 0.07);
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 4px 24px rgb(46 37 53 / 0.07);
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s;
}
.fn-daily-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgb(46 37 53 / 0.14);
}
.fn-daily-time {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.fn-daily-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.fn-ico-lav {
    background: rgb(200 191 231 / 0.18);
}
.fn-ico-peach {
    background: rgb(240 201 184 / 0.2);
}
.fn-ico-gold {
    background: rgb(217 188 148 / 0.18);
}
.fn-ico-green {
    background: rgb(100 200 120 / 0.14);
}
.fn-ico-blue {
    background: rgb(107 143 168 / 0.16);
}
.fn-ico-ink {
    background: rgb(28 22 36 / 0.08);
}
.fn-daily-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 8px;
}
.fn-daily-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.68;
}
.fn-daily-ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 12px;
    color: var(--lav-deep);
    background: rgb(200 191 231 / 0.12);
    border: 1px solid rgb(200 191 231 / 0.22);
    border-radius: 20px;
    padding: 4px 10px;
}
#fn-ais {
    background: var(--ink);
    padding: 70px 24px;
}
.fn-ais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.fn-ais-card {
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 28px;
    padding: 36px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s,
        border-color 0.3s;
}
.fn-ais-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgb(0 0 0 / 0.4);
    border-color: rgb(200 191 231 / 0.2);
}
.fn-ais-card-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.fn-ais-icon {
    font-size: 20px;
}
.fn-ais-title {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lavender);
}
.fn-ais-conf {
    margin-left: auto;
    font-size: 12px;
    color: rgb(255 255 255 / 0.36);
}
.fn-ais-num {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.fn-ais-insight {
    font-size: 14px;
    color: rgb(255 255 255 / 0.68);
    line-height: 1.65;
    margin-bottom: 18px;
}
.fn-ais-bar {
    height: 3px;
    background: rgb(255 255 255 / 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
}
.fn-ais-fill {
    height: 100%;
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
    animation: fn-fill-grow 1.2s ease-out 0.6s forwards;
}
.fn-ais-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.fn-ais-tag {
    font-size: 12px;
    color: rgb(255 255 255 / 0.48);
    background: rgb(255 255 255 / 0.06);
    border: 1px solid rgb(255 255 255 / 0.07);
    border-radius: 20px;
    padding: 3px 10px;
}
#fn-timeline {
    background: #0e0b16;
    padding: 70px 24px;
}
.fn-tl-inner {
    max-width: 740px;
    margin: 0 auto;
}
.fn-tl-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fn-tl-list::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: linear-gradient(
        180deg,
        transparent,
        rgb(200 191 231 / 0.22) 10%,
        rgb(200 191 231 / 0.22) 90%,
        transparent
    );
}
.fn-tl-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 22px 0;
    position: relative;
}
.fn-tl-dot-col {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fn-tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgb(200 191 231 / 0.2);
    border: 2px solid rgb(200 191 231 / 0.4);
    position: relative;
    z-index: 1;
    margin-top: 5px;
    transition:
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
    flex-shrink: 0;
}
.fn-tl-item:hover .fn-tl-dot {
    background: var(--lavender);
    border-color: var(--lavender);
    box-shadow: 0 0 0 4px rgb(200 191 231 / 0.14);
}
.fn-tl-dot.fn-tl-active {
    background: var(--lav-deep);
    border-color: var(--lavender);
    box-shadow: 0 0 0 4px rgb(200 191 231 / 0.14);
}
.fn-tl-content {
    flex: 1;
}
.fn-tl-time {
    font-size: 12px;
    color: rgb(255 255 255 / 0.32);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.fn-tl-event {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 7px;
}
.fn-tl-ai-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--lavender);
    background: rgb(200 191 231 / 0.1);
    border: 1px solid rgb(200 191 231 / 0.18);
    border-radius: 20px;
    padding: 4px 12px;
}
#fn-trust {
    background: var(--cream);
    padding: 70px 24px;
}
.fn-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.fn-trust-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgb(46 37 53 / 0.07);
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s;
}
.fn-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgb(46 37 53 / 0.14);
}
.fn-trust-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.fn-ti-lav {
    background: rgb(200 191 231 / 0.18);
    border: 1px solid rgb(200 191 231 / 0.24);
}
.fn-ti-peach {
    background: rgb(240 201 184 / 0.22);
    border: 1px solid rgb(240 201 184 / 0.28);
}
.fn-ti-gold {
    background: rgb(217 188 148 / 0.18);
    border: 1px solid rgb(217 188 148 / 0.22);
}
.fn-ti-green {
    background: rgb(100 200 120 / 0.14);
    border: 1px solid rgb(100 200 120 / 0.2);
}
.fn-trust-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 8px;
}
.fn-trust-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.7;
}
#fn-features {
    padding: 0;
}
.fn-feat-block {
    padding: 90px 24px;
}
.fn-feat-block:nth-child(odd) {
    background: #f5efe8;
}
.fn-feat-block:nth-child(even) {
    background: var(--cream);
}
.fn-feat-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.fn-feat-inner.fn-rev {
    direction: rtl;
}
.fn-feat-inner.fn-rev > * {
    direction: ltr;
}
.fn-feat-label {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lav-deep);
    margin-bottom: 12px;
}
.fn-feat-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3.8vw, 50px);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.12;
    margin-bottom: 14px;
}
.fn-feat-h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.fn-feat-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.72;
    margin-bottom: 20px;
}
.fn-feat-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}
.fn-feat-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.55;
}
.fn-feat-bullet::before {
    content: "✓";
    color: var(--lav-deep);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px;
}
.fn-feat-stats {
    display: flex;
    gap: 28px;
}
.fn-feat-stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--lav-deep);
    line-height: 1;
}
.fn-feat-stat-lbl {
    font-size: 12px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
}
.fn-feat-visual {
    display: flex;
    justify-content: center;
}
.fn-sleep-card {
    background: rgb(28 22 36 / 0.96);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 24px;
    padding: 26px;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 40px 100px rgb(28 22 36 / 0.28);
}
.fn-sleep-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.fn-sleep-hdr-lbl {
    font-size: 12px;
    color: rgb(255 255 255 / 0.38);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.fn-sleep-badge {
    background: rgb(200 191 231 / 0.18);
    color: var(--lavender);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgb(200 191 231 / 0.22);
}
.fn-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 76px;
    margin-bottom: 12px;
}
.fn-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    height: var(--h);
    background: linear-gradient(180deg, rgb(200 191 231 / 0.6), rgb(200 191 231 / 0.22));
    transform-origin: bottom;
    animation: fn-bar-grow 0.9s ease-out forwards;
    animation-delay: var(--d);
    transform: scaleY(0);
}
.fn-chart-bar.fn-today {
    background: linear-gradient(180deg, var(--lavender), rgb(200 191 231 / 0.45));
}
.fn-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}
.fn-chart-label {
    font-size: 12px;
    color: rgb(255 255 255 / 0.28);
    text-align: center;
    flex: 1;
}
.fn-sleep-stats {
    display: flex;
    gap: 18px;
}
.fn-sleep-stat-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--cream);
}
.fn-sleep-stat-lbl {
    font-size: 12px;
    color: rgb(255 255 255 / 0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.fn-bubbles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
    width: 100%;
}
.fn-bubble {
    background: rgb(28 22 36 / 0.96);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 8px 32px rgb(28 22 36 / 0.2);
}
.fn-bubble-hdr {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.fn-bubble-icon {
    font-size: 14px;
}
.fn-bubble-title {
    font-size: 12px;
    color: var(--lavender);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    flex: 1;
}
.fn-bubble-conf {
    font-size: 12px;
    color: rgb(255 255 255 / 0.34);
}
.fn-bubble-text {
    font-size: 13px;
    color: rgb(255 255 255 / 0.7);
    line-height: 1.55;
    margin-bottom: 9px;
}
.fn-bubble-bar {
    height: 3px;
    background: rgb(255 255 255 / 0.08);
    border-radius: 2px;
    overflow: hidden;
}
.fn-bubble-fill {
    height: 100%;
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
    animation: fn-fill-grow 1s ease-out 0.4s forwards;
    background: linear-gradient(90deg, var(--lav-deep), var(--lavender));
}
.fn-ms-wrap {
    background: rgb(28 22 36 / 0.96);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 24px;
    padding: 26px;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 40px 100px rgb(28 22 36 / 0.28);
}
.fn-ms-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}
.fn-ms-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 28px;
    width: 1.5px;
    height: calc(100% - 4px);
    background: linear-gradient(180deg, rgb(200 191 231 / 0.28), rgb(200 191 231 / 0.06));
}
.fn-ms-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.fn-ms-done {
    background: rgb(100 200 120 / 0.18);
    border: 1.5px solid rgb(100 200 120 / 0.28);
}
.fn-ms-soon {
    background: rgb(200 191 231 / 0.14);
    border: 1.5px solid rgb(200 191 231 / 0.28);
}
.fn-ms-up {
    background: rgb(255 255 255 / 0.04);
    border: 1.5px dashed rgb(255 255 255 / 0.12);
}
.fn-ms-name {
    font-size: 13px;
    color: rgb(255 255 255 / 0.85);
    font-weight: 400;
    margin-bottom: 2px;
}
.fn-ms-age {
    font-size: 12px;
    color: rgb(255 255 255 / 0.34);
}
.fn-ms-badge {
    display: inline-block;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 3px;
}
.fn-ms-bdone {
    background: rgb(100 200 120 / 0.15);
    color: #90d4a0;
    border: 1px solid rgb(100 200 120 / 0.18);
}
.fn-ms-bsoon {
    background: rgb(200 191 231 / 0.12);
    color: var(--lavender);
    border: 1px solid rgb(200 191 231 / 0.16);
}
#fn-metrics {
    background: var(--ink);
    padding: 70px 24px;
}
.fn-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.07);
}
.fn-metric-card {
    padding: 44px 28px;
    text-align: center;
    background: rgb(255 255 255 / 0.03);
    border-right: 1px solid rgb(255 255 255 / 0.06);
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
    transition: background 0.3s;
}
.fn-metric-card:hover {
    background: rgb(255 255 255 / 0.05);
}
.fn-metric-card:nth-child(3n) {
    border-right: none;
}
.fn-metric-card:nth-child(n + 4) {
    border-bottom: none;
}
.fn-metric-num {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.fn-metric-num em {
    font-style: italic;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.fn-metric-lbl {
    font-size: 12px;
    color: rgb(255 255 255 / 0.42);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 5px;
}
.fn-metric-desc {
    font-size: 12px;
    color: rgb(255 255 255 / 0.26);
    line-height: 1.5;
}
#fn-testi {
    background: var(--ink);
    padding: 70px 24px;
}
.fn-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fn-testi-card {
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.09);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s;
}
.fn-testi-card:hover {
    transform: scale(1.015);
    box-shadow: 0 24px 72px rgb(0 0 0 / 0.32);
}
.fn-testi-stars {
    color: #f0c060;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.fn-testi-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.55;
    margin-bottom: 18px;
}
.fn-testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fn-testi-avt {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
}
.fn-ta-1 {
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
}
.fn-ta-2 {
    background: linear-gradient(135deg, #6b8fa8, #4a7f6f);
}
.fn-ta-3 {
    background: linear-gradient(135deg, var(--peach-deep), var(--gold));
}
.fn-ta-4 {
    background: linear-gradient(135deg, #8b7cba, #4a7f6f);
}
.fn-ta-5 {
    background: linear-gradient(135deg, var(--gold), var(--peach-deep));
}
.fn-ta-6 {
    background: linear-gradient(135deg, #6b8fa8, var(--lav-deep));
}
.fn-testi-name {
    font-size: 12px;
    color: rgb(255 255 255 / 0.44);
}
#fn-faq {
    background: var(--cream);
    padding: 100px 24px;
}
.fn-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.fn-faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fn-faq-item {
    border: 1px solid rgb(28 22 36 / 0.09);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgb(28 22 36 / 0.04);
    transition: box-shadow 0.25s;
}
.fn-faq-item:hover {
    box-shadow: 0 8px 28px rgb(28 22 36 / 0.1);
}
.fn-faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 28px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.45;
}
.fn-faq-q:hover {
    color: var(--lav-deep);
}
.fn-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgb(200 191 231 / 0.18);
    border: 1px solid rgb(200 191 231 / 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--lav-deep);
    transition:
        transform 0.3s,
        background 0.2s;
}
.fn-faq-item.fn-open .fn-faq-icon {
    transform: rotate(45deg);
    background: rgb(200 191 231 / 0.32);
}
.fn-faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.3s;
    padding: 0 28px;
}
.fn-faq-item.fn-open .fn-faq-a {
    max-height: 400px;
    padding: 0 28px 22px;
}
.fn-faq-a p {
    font-size: 15px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.75;
}
.fn-faq-a strong {
    color: var(--ink-mid);
    font-weight: 400;
}
#fn-seo {
    background: #f5efe8;
    padding: 80px 24px;
}
.fn-seo-inner {
    max-width: 860px;
    margin: 0 auto;
}
.fn-seo-hl {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 40px;
    text-align: center;
}
.fn-seo-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.fn-seo-col h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
}
.fn-seo-col p {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.78;
}
#fn-finalcta {
    background: var(--ink);
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.fn-fcta-orb-1 {
    position: absolute;
    width: 560px;
    height: 560px;
    top: -160px;
    left: 50%;
    transform: translateX(-60%);
    background: radial-gradient(circle, rgb(200 191 231 / 0.14), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: orb-drift 18s ease-in-out infinite;
}
.fn-fcta-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -60px;
    background: radial-gradient(circle, rgb(201 132 114 / 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: orb-drift 22s ease-in-out infinite reverse;
}
.fn-fcta-inner {
    position: relative;
    z-index: 1;
}
.fn-fcta-hl {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 5.5vw, 84px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 16px;
}
.fn-fcta-hl em {
    font-style: italic;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.fn-fcta-sub {
    font-size: 18px;
    color: rgb(255 255 255 / 0.52);
    margin-bottom: 40px;
}
.fn-fcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    border: none;
    border-radius: 999px;
    padding: 20px 52px;
    height: 62px;
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s;
    box-shadow: 0 10px 40px rgb(139 124 186 / 0.48);
}
.fn-fcta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 56px rgb(139 124 186 / 0.6);
}
.fn-fcta-micro {
    font-size: 13px;
    color: rgb(255 255 255 / 0.28);
    margin-top: 14px;
}
.fn-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}
.fn-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgb(255 255 255 / 0.4);
}
.fn-trust-badge-ico {
    font-size: 15px;
}
@media (max-width: 960px) {
    .fn-story-grid,
    .fn-daily-grid,
    .fn-ais-grid,
    .fn-trust-grid {
        grid-template-columns: 1fr;
    }
    .fn-testi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fn-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fn-feat-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fn-feat-inner.fn-rev {
        direction: ltr;
    }
    .fn-seo-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .fn-tl-inner {
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .fn-daily-grid,
    .fn-metrics-grid,
    .fn-testi-grid {
        grid-template-columns: 1fr;
    }
    #fn-story,
    #fn-daily,
    #fn-ais,
    #fn-timeline,
    #fn-trust,
    #fn-metrics,
    #fn-testi,
    #fn-faq,
    #fn-seo,
    #fn-finalcta {
        padding: 72px 20px;
    }
    .fn-feat-block {
        padding: 72px 20px;
    }
}
#fn-back-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    z-index: 500;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(28 22 36 / 0.82);
    border: 1px solid rgb(200 191 231 / 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--lavender);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
    box-shadow: 0 4px 18px rgb(0 0 0 / 0.28);
}
#fn-back-top.show {
    opacity: 1;
    pointer-events: auto;
}
#fn-back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgb(139 124 186 / 0.38);
}
.fn-seo-link {
    color: var(--lav-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgb(139 124 186 / 0.4);
    transition:
        text-decoration-color 0.2s,
        color 0.2s;
}
.fn-seo-link:hover {
    color: var(--lav-deep);
    text-decoration-color: var(--lav-deep);
}
