:root {
    --bg: #08090d;
    --bg-soft: #0d0f15;
    --surface: #12151d;
    --surface-2: #171a24;
    --surface-3: #1c202c;
    --text: #f7f7fa;
    --muted: #a5a8b4;
    --muted-2: #747987;
    --line: rgba(255, 255, 255, .09);
    --primary: #a64dff;
    --primary-light: #c778ff;
    --secondary: #7040ff;
    --success: #54d39b;
    --gold: #ffc85b;
    --gradient: linear-gradient(135deg, #6f3df4, #9b45ff 54%, #d265ff);
    --shadow: 0 30px 80px rgba(0, 0, 0, .42);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --header-height: 78px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at 50% -10%, rgba(118, 87, 255, .11), transparent 32rem), var(--bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -.035em;
}

p {
    color: var(--muted);
}

::selection {
    color: white;
    background: rgba(255, 92, 115, .65);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: white;
    color: #08090d;
    transform: translateY(-160%);
    transition: transform .2s;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(255, 122, 142, .82);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background .25s, border-color .25s, box-shadow .25s;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(8, 9, 13, .82);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.brand img {
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(118, 87, 255, .18);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav>a:not(.button) {
    color: #c4c6cf;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s;
}

.site-nav>a:not(.button):hover {
    color: white;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: white;
    transition: transform .2s, opacity .2s;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: white;
    font-size: 14px;
    font-weight: 760;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-small {
    min-height: 42px;
    padding: 9px 16px;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .07);
}

.button-primary {
    background: var(--gradient);
    box-shadow: 0 12px 34px rgba(255, 92, 115, .22);
}

.button-primary:hover {
    box-shadow: 0 16px 40px rgba(255, 92, 115, .32);
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .035);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
}

.hero {
    position: relative;
    min-height: 870px;
    padding: 154px 0 0;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: .46;
    pointer-events: none;
}

.hero-glow-one {
    width: 440px;
    height: 440px;
    top: 5%;
    right: -9%;
    background: rgba(118, 87, 255, .2);
}

.hero-glow-two {
    width: 360px;
    height: 360px;
    top: 45%;
    left: -16%;
    background: rgba(255, 92, 115, .13);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, .8fr);
    align-items: center;
    gap: 70px;
}

.eyebrow,
.kicker {
    margin-bottom: 22px;
    color: #ffc2cb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 92, 115, .18);
    border-radius: 999px;
    background: rgba(255, 92, 115, .07);
    letter-spacing: .07em;
    text-transform: none;
}

.eyebrow>span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(255, 92, 115, .12);
}

.hero h1 {
    max-width: 740px;
    margin-bottom: 25px;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 850;
}

.hero h1 em,
h2 span {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.hero-text {
    max-width: 660px;
    margin-bottom: 32px;
    font-size: 19px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.availability {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.availability p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
}

.availability strong {
    color: #e7e7eb;
    font-size: 13px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-left: -7px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: var(--surface-2);
    font-style: normal;
    font-size: 13px;
}

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

.hero-visual {
    position: relative;
    min-height: 630px;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.orbit-one {
    width: 560px;
    height: 560px;
}

.orbit-two {
    width: 440px;
    height: 440px;
    border-color: rgba(118, 87, 255, .12);
}

.phone-shell {
    position: relative;
    z-index: 3;
    width: 320px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 44px;
    background: linear-gradient(145deg, #30333d, #0b0c10 35%, #20232d);
    box-shadow: 0 50px 110px rgba(0, 0, 0, .64), 0 0 80px rgba(118, 87, 255, .13);
    transform: rotate(2deg);
}

.phone-shell::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1px;
    border-radius: inherit;
    box-shadow: inset 1px 1px rgba(255, 255, 255, .15);
}

.phone-top {
    position: absolute;
    z-index: 5;
    top: 17px;
    left: 50%;
    width: 82px;
    height: 22px;
    border-radius: 14px;
    background: #050609;
    transform: translateX(-50%);
}

.phone-top i {
    position: absolute;
    right: 9px;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #141b27;
}

.phone-screen {
    min-height: 612px;
    padding: 46px 15px 14px;
    overflow: hidden;
    border-radius: 35px;
    background: linear-gradient(180deg, #11131b, #090a0f);
}

.app-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.app-heading small {
    display: block;
    color: #9497a1;
    font-size: 9px;
}

.app-heading strong {
    font-size: 14px;
}

.mini-avatar,
.friend-avatar {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b81, #7256f6);
}

.mini-avatar {
    width: 32px;
    height: 32px;
    font-size: 11px;
}

.app-search {
    height: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    color: #6f7380;
    background: #171a23;
    font-size: 9px;
}

.app-search svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.app-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 19px 1px 9px;
    font-size: 10px;
}

.app-section-title span {
    color: var(--primary-light);
    font-size: 8px;
}

.continue-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 11px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    background: #171a23;
}

.poster {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    color: white;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    text-align: center;
    text-shadow: 0 2px 7px black;
}

.poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 25%, rgba(255, 255, 255, .25), transparent 16%), linear-gradient(155deg, transparent 15%, rgba(255, 255, 255, .1), transparent 55%);
}

.poster span {
    z-index: 1;
    padding: 8px 3px;
}

.poster-night {
    height: 101px;
    background: linear-gradient(160deg, #38265e, #18223d 48%, #dd4966);
}

.poster-red {
    background: linear-gradient(150deg, #61192c, #e14355 55%, #17070c);
}

.poster-blue {
    background: linear-gradient(150deg, #0b1f45, #208aa7 55%, #050c16);
}

.poster-gold {
    background: linear-gradient(150deg, #3c260e, #d68a31 55%, #110a04);
}

.continue-info {
    min-width: 0;
}

.continue-info small {
    color: var(--primary-light);
    font-size: 7px;
}

.continue-info strong {
    display: block;
    overflow: hidden;
    font-size: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.continue-info p {
    margin: 2px 0 7px;
    color: #7e818c;
    font-size: 8px;
}

.progress-bar {
    height: 3px;
    overflow: hidden;
    border-radius: 4px;
    background: #292c35;
}

.progress-bar span {
    display: block;
    width: 62%;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
}

.continue-info button {
    width: 100%;
    height: 25px;
    margin-top: 10px;
    border: 0;
    border-radius: 7px;
    color: white;
    background: linear-gradient(90deg, #f45168, #7a58f5);
    font-size: 8px;
    font-weight: 700;
}

.poster-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    height: 125px;
}

.app-nav {
    display: flex;
    justify-content: space-around;
    margin: 17px -15px -14px;
    padding: 10px 7px 8px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(14, 16, 22, .96);
    color: #676b77;
    font-size: 13px;
}

.app-nav span {
    display: grid;
    place-items: center;
}

.app-nav small {
    margin-top: 2px;
    font-size: 6px;
}

.app-nav .active {
    color: var(--primary-light);
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(22, 25, 34, .86);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .4);
    backdrop-filter: blur(14px);
}

.floating-card small {
    display: block;
    color: var(--muted-2);
    font-size: 8px;
}

.floating-card strong {
    display: block;
    color: #ececf0;
    font-size: 10px;
}

.floating-progress {
    top: 110px;
    left: -22px;
}

.floating-rating {
    right: -30px;
    bottom: 115px;
}

.floating-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
}

.floating-icon.purple {
    background: rgba(118, 87, 255, .18);
    color: #a693ff;
}

.floating-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.score {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #ffd76d;
    background: rgba(255, 200, 91, .12);
    font-size: 13px;
    font-weight: 850;
}

.concept-label {
    position: absolute;
    bottom: 0;
    margin: 0;
    color: #5e626e;
    font-size: 10px;
    text-align: center;
}

.categories {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 46px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #6f7380;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.categories i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #343743;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading h2,
.showcase-copy h2,
.community-copy h2,
.story-copy h2,
.faq-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 840;
}

.section-heading>p:last-child {
    max-width: 610px;
    margin: 0 auto;
    font-size: 17px;
}

.kicker {
    color: #ff8798;
}

.problem-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, .014), transparent);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.problem-card {
    position: relative;
    min-height: 290px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    transition: transform .25s, border-color .25s, background .25s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 92, 115, .22);
    background: linear-gradient(145deg, rgba(255, 92, 115, .055), rgba(255, 255, 255, .015));
}

.card-number {
    position: absolute;
    top: 25px;
    right: 26px;
    color: rgba(255, 255, 255, .08);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -.06em;
}

.icon-box,
.feature-icon {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .045);
    color: #ff8798;
}

.icon-box {
    width: 48px;
    height: 48px;
    margin-bottom: 36px;
    border-radius: 14px;
}

.icon-box svg,
.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.problem-card p {
    margin: 0;
    font-size: 14px;
}

.problem-answer {
    max-width: 760px;
    margin: 42px auto 0;
    color: #d3d4da;
    font-size: 20px;
    text-align: center;
}

.problem-answer span {
    color: #ff8698;
    font-weight: 800;
}

.features-section {
    padding-top: 134px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--surface-2), #101219);
}

.feature-wide {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(240px, 1fr);
    align-items: center;
    gap: 28px;
    grid-column: span 2;
    min-height: 360px;
}

.feature-tall {
    min-height: 420px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    border-radius: 13px;
    color: #ff8294;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 14px;
}

.search-demo {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    background: #0c0e14;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.search-demo-bar {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 11px;
    color: #777b88;
    background: #171a23;
    font-size: 11px;
}

.search-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.mini-poster {
    aspect-ratio: 2/3;
    display: grid;
    place-items: end center;
    padding: 8px 3px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .8);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: inset 0 -20px 30px rgba(0, 0, 0, .3);
}

.coral {
    background: linear-gradient(145deg, #2b1721, #d44b60);
}

.violet {
    background: linear-gradient(145deg, #142546, #774fcd);
}

.cyan {
    background: linear-gradient(145deg, #153e45, #3f9bad);
}

.amber {
    background: linear-gradient(145deg, #4a2a15, #dc8e45);
}

.playlist-demo {
    width: min(100%, 310px);
    margin: 34px auto 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    background: #0d0f15;
    transform: rotate(-2deg);
}

.playlist-covers {
    display: grid;
    height: 170px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    overflow: hidden;
    border-radius: 11px;
}

.playlist-covers span {
    background: #222;
}

.playlist-covers .c1 {
    background: linear-gradient(145deg, #241341, #5b46b3);
}

.playlist-covers .c2 {
    background: linear-gradient(145deg, #39131a, #bb4453);
}

.playlist-covers .c3 {
    background: linear-gradient(145deg, #0d3035, #308d83);
}

.playlist-covers .c4 {
    background: linear-gradient(145deg, #3e2c15, #c1873b);
}

.playlist-demo strong,
.playlist-demo small {
    display: block;
}

.playlist-demo strong {
    margin-top: 12px;
    font-size: 13px;
}

.playlist-demo small {
    color: var(--muted-2);
    font-size: 9px;
}

.status-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 35px;
}

.status-chips span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #8c909c;
    font-size: 10px;
}

.status-chips .active {
    border-color: rgba(255, 92, 115, .32);
    color: #ff9baa;
    background: rgba(255, 92, 115, .1);
}

.rating-demo {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 3px 12px;
    margin-top: 26px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(0, 0, 0, .18);
}

.rating-demo strong {
    grid-row: span 2;
    color: #ffd36b;
    font-size: 32px;
}

.rating-demo span {
    color: #ffd36b;
    letter-spacing: .1em;
}

.rating-demo small {
    color: #8d919c;
}

.stats-feature {
    background: radial-gradient(circle at 85% 50%, rgba(118, 87, 255, .12), transparent 34%), linear-gradient(145deg, var(--surface-2), #101219);
}

.chart-demo {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    background: #0c0e14;
}

.chart-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chart-top small,
.chart-top strong {
    display: block;
}

.chart-top small {
    color: #777b88;
    font-size: 9px;
}

.chart-top strong {
    font-size: 25px;
}

.chart-top i {
    padding: 5px 8px;
    border-radius: 8px;
    color: #75dbae;
    background: rgba(84, 211, 155, .1);
    font-size: 8px;
    font-style: normal;
}

.bars {
    height: 130px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 22px;
}

.bars span {
    width: 100%;
    height: var(--h);
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(to top, rgba(118, 87, 255, .25), #846bff);
}

.showcase-section {
    border-top: 1px solid rgba(255, 255, 255, .04);
    background: #0a0b10;
}

.showcase-grid {
    display: grid;
    grid-template-columns: .78fr 1.3fr;
    align-items: center;
    gap: 76px;
}

.showcase-copy>p:not(.kicker),
.community-copy>p:not(.kicker),
.story-copy>p:not(.kicker),
.faq-intro>p:not(.kicker) {
    font-size: 16px;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: #d3d4da;
    font-size: 14px;
}

.check-list span {
    width: 23px;
    height: 23px;
    display: inline-grid;
    place-items: center;
    margin-right: 9px;
    border-radius: 50%;
    color: var(--success);
    background: rgba(84, 211, 155, .1);
    font-size: 11px;
}

.showcase-panel {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(145deg, #171a23, #0e1016);
    box-shadow: var(--shadow);
}

.detail-poster {
    min-height: 350px;
    display: grid;
    place-items: end center;
    padding: 30px 12px;
    border-radius: 16px;
    color: white;
    background: radial-gradient(circle at 65% 30%, #e56372, transparent 12%), linear-gradient(155deg, #171c3e, #57315e 52%, #d34b5e);
    font-size: 24px;
    font-weight: 900;
    line-height: .9;
    letter-spacing: .1em;
    text-align: center;
    text-shadow: 0 3px 18px #000;
}

.detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 13px;
}

.detail-badges span {
    padding: 4px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #9296a2;
    font-size: 8px;
}

.detail-content h3 {
    margin-bottom: 10px;
    font-size: 26px;
}

.detail-content>p {
    font-size: 11px;
}

.progress-box {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(0, 0, 0, .18);
}

.progress-box>div:first-child {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    font-size: 10px;
}

.progress-box>div:first-child span {
    color: #9296a2;
}

.progress-bar.large {
    height: 6px;
}

.progress-bar.large span {
    width: 42%;
}

.episode-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 13px;
}

.episode-controls button {
    min-height: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #a9acb6;
    background: #171a23;
    font-size: 8px;
}

.episode-controls button:last-child {
    grid-column: span 2;
    border: 0;
    color: white;
    background: var(--gradient);
    font-weight: 700;
}

.community-section {
    overflow: hidden;
    background: linear-gradient(180deg, #0d0f16, #090a0f);
}

.community-glow {
    position: absolute;
    right: -10%;
    bottom: -40%;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: rgba(118, 87, 255, .12);
    filter: blur(80px);
}

.community-grid {
    position: relative;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.text-link {
    color: #ff8798;
    font-size: 14px;
    font-weight: 750;
}

.text-link span {
    display: inline-block;
    margin-left: 5px;
    transition: transform .2s;
}

.text-link:hover span {
    transform: translateX(4px);
}

.social-stack {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
    perspective: 1000px;
}

.activity-card {
    width: min(100%, 500px);
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 19px;
    background: rgba(23, 26, 36, .91);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
}

.activity-main {
    position: relative;
    z-index: 3;
}

.activity-back,
.activity-front {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
}

.activity-back {
    top: 32px;
    left: 4%;
    z-index: 1;
    transform: rotate(-4deg) scale(.94);
    opacity: .58;
}

.activity-front {
    right: -3%;
    bottom: 24px;
    z-index: 4;
    width: 72%;
    transform: rotate(3deg);
}

.activity-card p {
    margin: 0;
    font-size: 10px;
}

.activity-card p strong,
.activity-card p b {
    color: #eeeef2;
}

.friend-avatar {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    font-size: 12px;
}

.friend-avatar.teal {
    background: linear-gradient(135deg, #2e9b8c, #5edbb2);
}

.friend-avatar.gold {
    background: linear-gradient(135deg, #b67525, #ffd06b);
}

.activity-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
}

.activity-head strong,
.activity-head small {
    display: block;
}

.activity-head small,
.activity-head i {
    color: #777b88;
    font-size: 8px;
    font-style: normal;
}

.activity-work {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 16px 0;
}

.activity-poster {
    min-height: 140px;
    display: grid;
    place-items: end center;
    padding: 14px;
    border-radius: 11px;
    color: white;
    background: linear-gradient(155deg, #0e2c43, #2c6186 50%, #a5435b);
    font-size: 13px;
    font-weight: 900;
    line-height: .9;
    text-align: center;
}

.activity-work>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-work small {
    color: #777b88;
    font-size: 8px;
}

.activity-work strong {
    margin: 4px 0 8px;
    font-size: 17px;
}

.stars {
    color: #ffd36b;
    font-size: 10px;
}

.stars b {
    margin-left: 6px;
    color: #e8e8ec;
}

.activity-work q {
    margin-top: 12px;
    color: #999da8;
    font-size: 10px;
}

.activity-actions {
    display: flex;
    gap: 22px;
    color: #8a8e99;
    font-size: 8px;
}

.steps-section {
    background: #090a0f;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 51px;
    left: 17%;
    right: 17%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 92, 115, .35), rgba(118, 87, 255, .35), transparent);
}

.step {
    position: relative;
    z-index: 1;
    padding: 25px;
    text-align: center;
}

.step>span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 92, 115, .28);
    border-radius: 50%;
    color: #ff8a9b;
    background: #12141b;
    font-size: 10px;
    font-weight: 800;
    transform: translateX(-50%);
}

.step .icon-box {
    margin: 45px auto 20px;
}

.step h3 {
    margin-bottom: 9px;
    font-size: 20px;
}

.step p {
    font-size: 13px;
}

.story-section {
    padding-top: 40px;
}

.story-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: radial-gradient(circle at 13% 50%, rgba(255, 92, 115, .1), transparent 25%), linear-gradient(135deg, #151821, #0f1118);
}

.story-mark {
    position: relative;
    width: 200px;
    height: 200px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
}

.story-mark::before,
.story-mark::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.story-mark::before {
    inset: 20px;
}

.story-mark::after {
    inset: -20px;
}

.story-mark img {
    width: 82px;
    height: 82px;
    border-radius: 23px;
    box-shadow: 0 20px 40px rgba(118, 87, 255, .22);
}

.story-copy h2 {
    max-width: 720px;
}

.story-copy>p:not(.kicker) {
    max-width: 710px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
}

.social-links a {
    color: #d6d7dd;
    font-size: 13px;
    font-weight: 700;
}

.social-links a:last-child {
    color: #ff8798;
}

.waitlist-section {
    padding-top: 70px;
}

.waitlist-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 70px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 92, 115, .1), rgba(118, 87, 255, .08) 55%, rgba(255, 255, 255, .025));
}

.waitlist-glow {
    position: absolute;
    top: -160px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 92, 115, .13);
    filter: blur(70px);
}

.waitlist-copy,
.waitlist-form {
    position: relative;
    z-index: 1;
}

.waitlist-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(36px, 4.2vw, 54px);
}

.waitlist-copy>p:last-child {
    margin: 0;
}

.waitlist-form>label:first-child {
    display: block;
    margin-bottom: 8px;
    color: #dddde2;
    font-size: 12px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
}

.form-row input {
    width: 100%;
    min-height: 54px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;
    outline: 0;
    color: white;
    background: rgba(8, 9, 13, .72);
    transition: border-color .2s, box-shadow .2s;
}

.form-row input:focus {
    border-color: rgba(255, 92, 115, .55);
    box-shadow: 0 0 0 4px rgba(255, 92, 115, .1);
}

.form-row input::placeholder {
    color: #656a77;
}

.consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    margin-top: 13px;
    color: #858995;
    font-size: 10px;
    cursor: pointer;
}

.consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--primary);
}

.form-message {
    min-height: 21px;
    margin: 9px 0 0;
    font-size: 11px;
}

.form-message.is-error {
    color: #ff98a7;
}

.form-message.is-success {
    color: #76ddb0;
}

.form-message.is-info {
    color: #b0a5ff;
}

.button[disabled] {
    cursor: wait;
    opacity: .66;
    transform: none;
}

.faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: none;
    color: #eeeef1;
    font-size: 15px;
    font-weight: 720;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #ff8798;
    font-size: 18px;
    font-weight: 400;
    transition: transform .2s, background .2s;
}

.faq-item button[aria-expanded="true"] span {
    background: rgba(255, 92, 115, .09);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 46px 22px 0;
}

.faq-answer p {
    margin: 0;
    font-size: 13px;
}

.site-footer {
    padding: 70px 0 24px;
    border-top: 1px solid var(--line);
    background: #06070a;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr .65fr .75fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-top>div:first-child>p {
    max-width: 290px;
    margin: 17px 0 0;
    font-size: 13px;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links a {
    color: #858995;
    font-size: 12px;
    transition: color .2s;
}

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

.footer-links a[aria-current="page"] {
    color: #d5a8ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 21px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    margin: 0;
    color: #5e626e;
    font-size: 10px;
}

.legal-page {
    min-height: 100vh;
    background: radial-gradient(circle at 50% -10%, rgba(118, 87, 255, .12), transparent 30rem), var(--bg);
}

.legal-header {
    position: static;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 13, .9);
}

.legal-nav-link {
    color: #d4d5db;
    font-size: 13px;
    font-weight: 700;
}

.legal-main {
    padding: 80px 0 110px;
}

.legal-article {
    width: min(calc(100% - 40px), 820px);
    margin: 0 auto;
}

.legal-article h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 6vw, 58px);
}

.legal-intro {
    margin-bottom: 42px;
    font-size: 17px;
}

.legal-notice {
    margin-bottom: 38px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 200, 91, .2);
    border-radius: 14px;
    color: #d8c28e;
    background: rgba(255, 200, 91, .06);
    font-size: 13px;
}

.legal-section {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.legal-section h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.legal-section p,
.legal-section li {
    color: var(--muted);
    font-size: 14px;
}

.legal-section ul {
    padding-left: 20px;
}

.placeholder {
    color: #ff91a1;
    font-weight: 750;
}


/* Contact */

.contact-section {
    padding-top: 30px;
}

.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
    align-items: center;
    gap: 70px;
    padding: 62px;
    overflow: hidden;
    border: 1px solid rgba(190, 112, 255, .22);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(23, 26, 36, .96), rgba(13, 15, 22, .96));
    box-shadow: var(--shadow);
}

.contact-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    right: -120px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(166, 77, 255, .25);
    filter: blur(28px);
    pointer-events: none;
}

.contact-copy,
.contact-actions {
    position: relative;
    z-index: 1;
}

.contact-copy h2 {
    max-width: 650px;
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 58px);
}

.contact-copy h2 span {
    color: var(--primary-light);
}

.contact-copy>p:last-child {
    max-width: 660px;
    margin: 0;
}

.contact-actions {
    display: grid;
    gap: 20px;
}

.contact-actions .button {
    width: 100%;
}

.contact-actions>p {
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
}

.contact-actions>p span {
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-actions>p a {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.contact-socials a {
    color: #c8a4ff;
    font-size: 13px;
    font-weight: 700;
}

.consent a {
    color: #d3b0ff;
    text-decoration: underline;
    text-decoration-color: rgba(211, 176, 255, .45);
    text-underline-offset: 3px;
}


/* Pages légales partagées */

.legal-page .site-header {
    position: sticky;
    background: rgba(8, 9, 13, .9);
    backdrop-filter: blur(18px);
}

.legal-page .site-footer {
    margin-top: 0;
}

.legal-main {
    position: relative;
    padding: 72px 0 112px;
    overflow: hidden;
}

.legal-main::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    top: -280px;
    left: 50%;
    border-radius: 50%;
    background: rgba(133, 66, 255, .16);
    filter: blur(32px);
    transform: translateX(-50%);
    pointer-events: none;
}

.legal-article {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), 900px);
}

.legal-hero {
    margin-bottom: 38px;
    text-align: center;
}

.legal-hero .kicker {
    justify-content: center;
}

.legal-article h1 {
    margin-bottom: 18px;
    font-size: clamp(40px, 7vw, 68px);
}

.legal-article h1 span {
    color: var(--primary-light);
}

.legal-intro {
    max-width: 720px;
    margin: 0 auto 18px;
    font-size: 17px;
}

.legal-updated {
    margin: 0;
    color: var(--muted-2);
    font-size: 12px;
}

.legal-notice {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin: 0 0 28px;
    padding: 18px 20px;
}

.legal-notice strong {
    color: #ffe2a4;
}

.legal-notice-icon {
    flex: 0 0 auto;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 200, 91, .12);
}

.legal-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
}

.legal-toc a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #c2c4cd;
    background: rgba(255, 255, 255, .025);
    font-size: 12px;
    font-weight: 700;
}

.legal-toc a:hover {
    border-color: rgba(199, 120, 255, .35);
    color: white;
}

.legal-content {
    display: grid;
    gap: 16px;
}

.legal-section {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(22, 25, 35, .88), rgba(13, 15, 22, .84));
    box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.legal-section h2 {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 22px;
}

.legal-number {
    display: inline-grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(183, 102, 255, .25);
    border-radius: 10px;
    color: #d3a0ff;
    background: rgba(160, 71, 255, .09);
    font-size: 11px;
    letter-spacing: 0;
}

.legal-section p:last-child,
.legal-section ul:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: #d3a0ff;
    text-decoration: underline;
    text-decoration-color: rgba(211, 160, 255, .35);
    text-underline-offset: 3px;
}

.legal-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.legal-detail {
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.legal-detail span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted-2);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.legal-detail strong {
    display: block;
    color: #f0f0f5;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.legal-placeholder {
    color: #ff9aab !important;
}

.legal-contact-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
    margin-top: 18px;
    padding: 26px 28px;
    border: 1px solid rgba(172, 89, 255, .24);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(116, 58, 244, .12), rgba(18, 20, 28, .9));
}

.legal-contact-card h2 {
    margin-bottom: 7px;
    font-size: 22px;
}

.legal-contact-card p {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 860px) {
    .contact-card {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px 38px;
    }
}

@media (max-width: 620px) {
    .contact-card {
        padding: 36px 22px;
        border-radius: 26px;
    }
    .legal-main {
        padding: 48px 0 80px;
    }
    .legal-section {
        padding: 24px 20px;
        border-radius: 18px;
    }
    .legal-details {
        grid-template-columns: 1fr;
    }
    .legal-contact-card {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }
    .legal-contact-card .button {
        width: 100%;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1020px) {
    .hero {
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr 420px;
        gap: 30px;
    }
    .floating-progress {
        left: 0;
    }
    .floating-rating {
        right: 0;
    }
    .showcase-grid,
    .community-grid {
        gap: 45px;
    }
    .showcase-panel {
        grid-template-columns: 170px 1fr;
    }
    .detail-poster {
        min-height: 300px;
    }
    .waitlist-card {
        gap: 40px;
        padding: 50px;
    }
}

@media (max-width: 860px) {
     :root {
        --header-height: 68px;
    }
    .section {
        padding: 86px 0;
    }
    .menu-toggle {
        display: block;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .site-nav {
        position: fixed;
        inset: var(--header-height) 16px auto;
        display: grid;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 17px;
        background: rgba(15, 17, 24, .97);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s, visibility .2s, transform .2s;
    }
    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .site-nav>a:not(.button) {
        padding: 12px;
    }
    .site-nav .button {
        margin-top: 4px;
    }
    .hero {
        padding-top: 126px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-copy {
        max-width: 720px;
        margin: auto;
    }
    .hero-text {
        margin-inline: auto;
    }
    .hero-actions,
    .availability {
        justify-content: center;
    }
    .hero-visual {
        min-height: 650px;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .problem-card {
        min-height: auto;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .feature-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
    .feature-tall {
        min-height: auto;
    }
    .showcase-grid,
    .community-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .showcase-copy,
    .community-copy {
        max-width: 680px;
        text-align: center;
        margin: 0 auto;
    }
    .check-list {
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }
    .community-grid {
        gap: 40px;
    }
    .social-stack {
        min-height: 420px;
    }
    .story-card {
        grid-template-columns: 180px 1fr;
        gap: 35px;
        padding: 45px;
    }
    .story-mark {
        width: 160px;
        height: 160px;
    }
    .waitlist-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .waitlist-form {
        text-align: left;
    }
    .faq-layout {
        gap: 35px;
    }
    .faq-intro {
        position: static;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }
    .section {
        padding: 72px 0;
    }
    .hero {
        padding-top: 110px;
    }
    .hero h1 {
        font-size: clamp(40px, 12vw, 54px);
    }
    .hero-text {
        font-size: 16px;
    }
    .hero-actions {
        display: grid;
    }
    .hero-actions .button {
        width: 100%;
    }
    .availability {
        align-items: flex-start;
        text-align: left;
    }
    .hero-visual {
        min-height: 570px;
        margin-inline: -10px;
        transform: scale(.9);
    }
    .phone-shell {
        width: 300px;
    }
    .phone-screen {
        min-height: 570px;
    }
    .orbit-one {
        width: 450px;
        height: 450px;
    }
    .orbit-two {
        width: 360px;
        height: 360px;
    }
    .floating-card {
        min-width: 170px;
        padding: 10px;
    }
    .floating-progress {
        top: 90px;
        left: -10px;
    }
    .floating-rating {
        right: -10px;
        bottom: 80px;
    }
    .categories {
        gap: 14px;
        margin-top: 5px;
        font-size: 8px;
    }
    .section-heading {
        margin-bottom: 38px;
    }
    .section-heading h2,
    .showcase-copy h2,
    .community-copy h2,
    .story-copy h2,
    .faq-intro h2 {
        font-size: 34px;
    }
    .problem-card,
    .feature-card {
        padding: 24px;
    }
    .problem-answer {
        font-size: 17px;
    }
    .feature-wide {
        min-height: auto;
    }
    .search-demo {
        margin-top: 10px;
        padding: 13px;
    }
    .search-results {
        gap: 5px;
    }
    .showcase-panel {
        grid-template-columns: 110px 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 20px;
    }
    .detail-poster {
        min-height: 250px;
        font-size: 14px;
    }
    .detail-content h3 {
        font-size: 19px;
    }
    .detail-content>p {
        display: none;
    }
    .progress-box {
        padding: 12px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid::before {
        display: none;
    }
    .step {
        padding: 10px 25px 30px;
    }
    .step>span {
        top: 0;
    }
    .step .icon-box {
        margin-top: 42px;
    }
    .story-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
        text-align: center;
    }
    .story-mark {
        width: 140px;
        height: 140px;
        margin: auto;
    }
    .story-mark img {
        width: 66px;
        height: 66px;
    }
    .social-links {
        justify-content: center;
    }
    .waitlist-card {
        padding: 40px 22px;
        border-radius: 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-row .button {
        width: 100%;
    }
    .faq-item button {
        font-size: 14px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-top>div:first-child {
        grid-column: span 2;
    }
    .footer-bottom {
        display: grid;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .hero-visual {
        margin-inline: -30px;
        transform: scale(.82);
    }
    .floating-progress {
        left: 8px;
    }
    .floating-rating {
        right: 8px;
    }
    .showcase-panel {
        grid-template-columns: 1fr;
    }
    .detail-poster {
        min-height: 180px;
    }
    .detail-content>p {
        display: block;
    }
    .activity-front {
        width: 86%;
        right: 0;
    }
    .activity-work {
        grid-template-columns: 82px 1fr;
    }
    .activity-poster {
        min-height: 125px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* Captures rÃ©elles et identitÃ© visuelle ListiFly */

::selection {
    background: rgba(166, 77, 255, .72);
}

:focus-visible {
    outline-color: rgba(199, 120, 255, .88);
}

.button-primary {
    box-shadow: 0 14px 38px rgba(143, 62, 255, .3);
}

.button-primary:hover {
    box-shadow: 0 18px 48px rgba(166, 77, 255, .42);
}

.eyebrow,
.kicker,
.text-link,
.problem-answer span {
    color: #cb91ff;
}

.eyebrow {
    border-color: rgba(166, 77, 255, .28);
    background: rgba(145, 61, 255, .1);
}

.eyebrow>span {
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(166, 77, 255, .14);
}

.hero-glow-two {
    background: rgba(170, 72, 255, .15);
}

.feature-icon {
    color: #bd6cff;
}

.real-phone,
.real-feature-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(184, 121, 255, .3);
    background: #07070d;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .56), 0 0 48px rgba(133, 58, 255, .16);
}

.real-phone {
    border-radius: 34px;
}

.real-phone img,
.real-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    backface-visibility: hidden;
}

.real-app-stage {
    min-height: 670px;
    isolation: isolate;
}

.real-app-stage::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 68, 255, .27), transparent 68%);
    filter: blur(10px);
}

.hero-phone {
    position: absolute;
    transition: transform .35s ease, opacity .35s ease;
}

.hero-phone-main {
    z-index: 4;
    width: 286px;
    aspect-ratio: 1026 / 2048;
    transform: translateX(-4px);
}

.hero-phone-left,
.hero-phone-right {
    z-index: 2;
    width: 220px;
    opacity: .84;
    filter: saturate(.98) brightness(.94);
}

.hero-phone-left {
    left: 0;
    aspect-ratio: 1024 / 2048;
    transform: translateY(38px) rotate(-5deg);
}

.hero-phone-right {
    right: -2px;
    aspect-ratio: 1050 / 2048;
    transform: translateY(42px) rotate(5deg);
}

.real-app-stage:hover .hero-phone-main {
    transform: translateX(-4px) translateY(-8px) rotate(0);
}

.real-app-stage:hover .hero-phone-left {
    transform: translate(-8px, 32px) rotate(-6deg);
}

.real-app-stage:hover .hero-phone-right {
    transform: translate(8px, 36px) rotate(6deg);
}

.real-interface-label,
.real-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(173, 99, 255, .27);
    border-radius: 999px;
    color: #d6b1ff;
    background: rgba(13, 11, 23, .82);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
    backdrop-filter: blur(16px);
    font-size: 11px;
    font-weight: 750;
}

.real-interface-label {
    position: absolute;
    z-index: 7;
    bottom: 1px;
    margin: 0;
    padding: 8px 13px;
}

.real-interface-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b65cff;
    box-shadow: 0 0 12px #a94cff;
}

.feature-card-with-shot {
    isolation: isolate;
    border-color: rgba(170, 104, 255, .14);
    background: radial-gradient(circle at 85% 80%, rgba(132, 58, 255, .12), transparent 42%), linear-gradient(145deg, #171724, #0e1018);
}

.feature-card-with-shot::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: auto -12% -35% 35%;
    height: 230px;
    border-radius: 50%;
    background: rgba(141, 59, 255, .11);
    filter: blur(45px);
}

.real-feature-media {
    width: min(100%, 310px);
    height: 310px;
    justify-self: end;
    border-radius: 22px 22px 0 0;
}

.real-feature-media img {
    object-position: center top;
}

.real-feature-wide {
    transform: translateY(40px) rotate(1.4deg);
}

.feature-tall.feature-card-with-shot {
    min-height: 590px;
}

.feature-tall .real-feature-tall {
    height: 330px;
    margin: 25px auto -65px;
    transform: rotate(-1.5deg);
}

.bento-grid>.feature-card:not(.feature-wide):not(.feature-tall) {
    min-height: 475px;
}

.real-feature-compact {
    height: 245px;
    margin: 28px auto -70px;
}

.real-feature-compact.align-bottom img {
    object-position: center bottom;
}

.stats-shot {
    height: 330px;
}

.real-showcase {
    position: relative;
    display: block;
    min-height: 610px;
    overflow: hidden;
    padding: 0;
    border-color: rgba(176, 105, 255, .2);
    background: radial-gradient(circle at 42% 36%, rgba(131, 59, 255, .22), transparent 42%), linear-gradient(145deg, #151521, #090a10);
}

.real-showcase::after,
.real-social-stage::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: auto -15% -28% 18%;
    height: 310px;
    border-radius: 50%;
    background: rgba(141, 60, 255, .16);
    filter: blur(55px);
}

.real-badge {
    position: absolute;
    z-index: 8;
    top: 24px;
    left: 24px;
    padding: 8px 13px;
}

.real-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b65cff;
    box-shadow: 0 0 12px #a94cff;
}

.showcase-phone {
    position: absolute;
    z-index: 2;
    top: 54px;
    width: 275px;
    aspect-ratio: 945 / 2048;
}

.showcase-phone-main {
    left: 70px;
    z-index: 4;
    transform: rotate(-4deg);
}

.showcase-phone-back {
    right: 54px;
    top: 90px;
    width: 245px;
    opacity: .7;
    filter: brightness(.78);
    transform: rotate(5deg);
}

.real-social-stage {
    min-height: 610px;
    isolation: isolate;
}

.social-phone {
    position: absolute;
    aspect-ratio: 945 / 2048;
}

.social-phone-main {
    z-index: 4;
    left: 46px;
    width: 270px;
    transform: rotate(-4deg);
}

.social-phone-back {
    z-index: 2;
    right: 28px;
    width: 245px;
    opacity: .68;
    filter: brightness(.78);
    transform: translateY(38px) rotate(6deg);
}

.story-mark img {
    border-radius: 20px;
    box-shadow: 0 0 55px rgba(166, 77, 255, .35);
}

@media (max-width: 1120px) {
    .hero-phone-main {
        width: 270px;
    }
    .hero-phone-left,
    .hero-phone-right {
        width: 190px;
    }
    .showcase-phone-main {
        left: 38px;
    }
    .showcase-phone-back {
        right: 30px;
    }
}

@media (max-width: 1020px) {
    .hero-phone-left {
        left: 8px;
    }
    .hero-phone-right {
        right: 8px;
    }
    .showcase-phone-main {
        left: 28px;
        width: 250px;
    }
    .showcase-phone-back {
        right: 22px;
        width: 220px;
    }
    .social-phone-main {
        left: 20px;
        width: 250px;
    }
    .social-phone-back {
        right: 10px;
        width: 225px;
    }
}

@media (max-width: 860px) {
    .real-app-stage {
        width: min(100%, 610px);
        min-height: 670px;
        margin-inline: auto;
    }
    .hero-phone-left {
        left: 4%;
    }
    .hero-phone-right {
        right: 4%;
    }
    .real-feature-media {
        justify-self: center;
    }
    .feature-wide.feature-card-with-shot {
        min-height: 650px;
    }
    .real-feature-wide {
        margin-inline: auto;
        transform: translateY(28px) rotate(1deg);
    }
    .real-showcase,
    .real-social-stage {
        width: min(100%, 650px);
        min-height: 610px;
        margin-inline: auto;
    }
    .showcase-phone-main {
        left: 16%;
        width: 270px;
    }
    .showcase-phone-back {
        right: 14%;
        width: 235px;
    }
    .social-phone-main {
        left: 17%;
        width: 270px;
    }
    .social-phone-back {
        right: 13%;
        width: 235px;
    }
}

@media (max-width: 620px) {
    .real-app-stage {
        min-height: 590px;
        margin-inline: -16px;
        transform: none;
    }
    .hero-phone-main {
        width: 250px;
    }
    .hero-phone-left,
    .hero-phone-right {
        width: 170px;
        opacity: .72;
    }
    .hero-phone-left {
        left: 0;
    }
    .hero-phone-right {
        right: 0;
    }
    .real-interface-label {
        bottom: 3px;
    }
    .feature-card-with-shot,
    .feature-tall.feature-card-with-shot {
        min-height: auto;
    }
    .bento-grid>.feature-card:not(.feature-wide):not(.feature-tall) {
        min-height: 465px;
    }
    .feature-wide.feature-card-with-shot {
        min-height: 615px;
    }
    .real-feature-media {
        width: min(100%, 285px);
    }
    .real-feature-wide,
    .stats-shot {
        height: 300px;
    }
    .feature-tall .real-feature-tall {
        height: 315px;
    }
    .real-showcase,
    .real-social-stage {
        min-height: 545px;
    }
    .showcase-phone-main,
    .social-phone-main {
        left: 6%;
        width: 235px;
    }
    .showcase-phone-back,
    .social-phone-back {
        right: 3%;
        width: 205px;
    }
}

@media (max-width: 390px) {
    .hero-visual.real-app-stage {
        min-height: 550px;
        margin-inline: -18px;
        transform: none;
    }
    .hero-phone-main {
        width: 226px;
    }
    .hero-phone-left,
    .hero-phone-right {
        width: 145px;
    }
    .real-showcase,
    .real-social-stage {
        min-height: 500px;
    }
    .showcase-phone-main,
    .social-phone-main {
        left: 2%;
        width: 215px;
    }
    .showcase-phone-back,
    .social-phone-back {
        right: 0;
        width: 185px;
    }
}


/* Mise en page sur mesure des captures de la section FonctionnalitÃ©s */

.feature-gallery,
.feature-shot,
.explore-small-shots {
    min-width: 0;
}

.feature-shot {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(190, 127, 255, .28);
    border-radius: 20px;
    background: #090910;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .48), 0 0 34px rgba(145, 62, 255, .13);
}

.feature-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
    filter: none;
    image-rendering: auto;
    backface-visibility: hidden;
}

.feature-explore-real,
.feature-review-real,
.feature-stats-real {
    min-height: 0;
    align-items: center;
    overflow: hidden;
}

.feature-explore-real {
    grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
    gap: 42px;
    padding-block: 38px;
}

.explore-real-gallery {
    width: 100%;
    max-width: 650px;
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(250px, 1fr);
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.explore-main-shot {
    width: 100%;
    max-width: 270px;
    justify-self: center;
}

.explore-small-shots {
    display: grid;
    align-content: center;
    gap: 15px;
}

.explore-small-shots .feature-shot {
    width: 100%;
    max-width: 340px;
}

.explore-small-shots .feature-shot:first-child {
    max-width: 285px;
    justify-self: center;
}

.feature-playlists-real {
    min-height: 0;
}

.playlist-full-shot {
    width: 100%;
    max-width: 300px;
    margin: 28px auto 0;
}

.feature-progress-real {
    min-height: 0;
}

.progress-real-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(195px, .92fr) minmax(220px, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.progress-add-shot,
.progress-series-shot {
    width: 100%;
}

.feature-review-real {
    grid-template-columns: minmax(250px, .72fr) minmax(360px, 1.28fr);
    gap: 52px;
    padding-block: 38px;
}

.review-full-shot {
    width: 100%;
    max-width: 400px;
    justify-self: center;
}

.feature-stats-real {
    grid-template-columns: minmax(250px, .72fr) minmax(360px, 1.28fr);
    gap: 52px;
    padding-block: 38px;
}

.stats-full-shot {
    width: 100%;
    max-width: 390px;
    justify-self: center;
}

@media (max-width: 1020px) {
    .feature-explore-real {
        grid-template-columns: minmax(225px, .55fr) minmax(0, 1.45fr);
        gap: 28px;
    }
    .explore-real-gallery {
        grid-template-columns: minmax(190px, .85fr) minmax(220px, 1fr);
    }
    .explore-main-shot {
        max-width: 240px;
    }
    .progress-real-gallery {
        grid-template-columns: minmax(170px, .88fr) minmax(190px, 1fr);
    }
}

@media (max-width: 860px) {
    .feature-explore-real,
    .feature-review-real,
    .feature-stats-real {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .explore-real-gallery,
    .review-full-shot,
    .stats-full-shot {
        justify-self: center;
    }
    .explore-real-gallery {
        max-width: 620px;
        grid-template-columns: minmax(220px, .88fr) minmax(270px, 1fr);
    }
    .explore-main-shot {
        max-width: 260px;
    }
    .playlist-full-shot {
        max-width: 300px;
    }
    .progress-real-gallery {
        max-width: 650px;
        grid-template-columns: minmax(220px, .9fr) minmax(250px, 1fr);
        margin-inline: auto;
    }
    .review-full-shot {
        max-width: 400px;
    }
    .stats-full-shot {
        max-width: 390px;
    }
}

@media (max-width: 620px) {
    .feature-explore-real,
    .feature-review-real,
    .feature-stats-real {
        padding-block: 28px;
    }
    .explore-real-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .explore-main-shot {
        max-width: 260px;
    }
    .explore-small-shots {
        width: 100%;
        justify-items: center;
    }
    .explore-small-shots .feature-shot {
        max-width: 100%;
    }
    .explore-small-shots .feature-shot:first-child {
        max-width: 285px;
    }
    .playlist-full-shot {
        max-width: min(100%, 300px);
    }
    .progress-real-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .progress-add-shot {
        width: min(100%, 320px);
        justify-self: center;
    }
    .progress-series-shot {
        width: 100%;
    }
    .review-full-shot {
        max-width: min(100%, 360px);
    }
    .stats-full-shot {
        max-width: min(100%, 350px);
    }
}


/* Captures nettes : suivi et espace social */

.real-showcase {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(300px, 1.18fr) minmax(220px, .82fr);
    align-items: center;
    gap: 18px;
    padding: 72px 24px 26px;
}

.real-showcase .showcase-phone {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    aspect-ratio: auto;
    opacity: 1;
    filter: none;
    transform: none;
}

.real-showcase .showcase-phone-main {
    max-width: 410px;
    justify-self: start;
    order: 1;
}

.real-showcase .showcase-phone-back {
    max-width: 285px;
    justify-self: end;
    order: 2;
}

.real-showcase .showcase-phone img,
.real-social-stage .social-phone img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: none;
    filter: none;
}

.social-stack.real-social-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
    perspective: none;
}

.real-social-stage .social-phone {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 285px;
    aspect-ratio: auto;
    opacity: 1;
    filter: none;
    transform: none;
}

.real-social-stage .social-phone-main {
    justify-self: end;
    order: 1;
}

.real-social-stage .social-phone-back {
    justify-self: start;
    order: 2;
}

@media (max-width: 1020px) {
    .real-showcase {
        grid-template-columns: minmax(270px, 1.15fr) minmax(200px, .85fr);
        padding-inline: 20px;
    }
    .real-showcase .showcase-phone-main {
        max-width: 370px;
    }
    .real-showcase .showcase-phone-back {
        max-width: 265px;
    }
    .real-social-stage .social-phone {
        max-width: 265px;
    }
}

@media (max-width: 860px) {
    .real-showcase,
    .social-stack.real-social-stage {
        width: min(100%, 680px);
        margin-inline: auto;
    }
    .real-showcase .showcase-phone-main {
        max-width: 390px;
    }
    .real-showcase .showcase-phone-back {
        max-width: 275px;
    }
    .real-social-stage .social-phone {
        max-width: 300px;
    }
}

@media (max-width: 620px) {
    .real-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 68px 18px 22px;
    }
    .real-showcase .showcase-phone-main,
    .real-showcase .showcase-phone-back {
        justify-self: center;
    }
    .real-showcase .showcase-phone-main {
        max-width: 390px;
    }
    .real-showcase .showcase-phone-back {
        max-width: 285px;
    }
    .social-stack.real-social-stage {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .real-social-stage .social-phone-main,
    .real-social-stage .social-phone-back {
        width: min(100%, 320px);
        max-width: 320px;
        justify-self: center;
    }
}