:root {
    --purple: #5b2bd4;
    --deep-purple: #251451;
    --dark: #171126;
    --pink: #ff4f91;
    --yellow: #ffd84d;
    --blue: #46b7ff;
    --green: #50d49a;
    --cream: #fffaf2;
    --white: #fff;
    --text: #292438;
    --muted: #6e687d;
    --line: #e8e1f2;
    --shadow: 0 22px 60px rgba(37, 20, 81, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "M PLUS Rounded 1c", sans-serif;
    line-height: 1.8;
}

button,
a {
    font: inherit;
}

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

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.section {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    padding-block: 100px;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    transition: .25s ease;
}

.site-header.is-scrolled {
    color: var(--deep-purple);
    border-color: rgba(37, 20, 81, .08);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(37, 20, 81, .08);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1200px, calc(100% - 40px));
    min-height: 78px;
    margin-inline: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: var(--deep-purple);
    background: var(--yellow);
    font: 900 25px/1 "Outfit", sans-serif;
    transform: rotate(-7deg);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand strong {
    font: 800 24px/1 "Outfit", sans-serif;
    letter-spacing: .06em;
}

.brand small {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .22em;
    opacity: .7;
}

.global-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 700;
}

.global-navigation a {
    transition: opacity .2s ease;
}

.global-navigation a:hover {
    opacity: .68;
}

.nav-contact {
    padding: 9px 20px;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    border-radius: 12px;
    color: inherit;
    background: rgba(255, 255, 255, .12);
}

.menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 22%, #743cdf 0, transparent 30%),
        linear-gradient(135deg, #201044 0%, #3e1b82 55%, #221047 100%);
}

.hero::after {
    position: absolute;
    right: -8%;
    bottom: -150px;
    left: -8%;
    height: 260px;
    border-radius: 50% 50% 0 0;
    background: var(--white);
    content: "";
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px;
    width: min(1120px, calc(100% - 40px));
    min-height: 730px;
    margin-inline: auto;
    padding: 120px 0 100px;
}

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

.hero-glow-one {
    top: 180px;
    left: -130px;
    width: 330px;
    height: 330px;
    background: var(--pink);
}

.hero-glow-two {
    right: 80px;
    bottom: 100px;
    width: 230px;
    height: 230px;
    background: var(--blue);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--purple);
    font: 800 13px/1.4 "Outfit", sans-serif;
    letter-spacing: .2em;
}

.hero .eyebrow {
    color: var(--yellow);
}

.hero h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.18;
    letter-spacing: -.045em;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-description {
    max-width: 570px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 13px 28px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

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

.button-primary {
    color: var(--deep-purple);
    background: var(--yellow);
    box-shadow: 0 13px 35px rgba(255, 216, 77, .22);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .06);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 27px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
    list-style: none;
}

.hero-points li::before {
    margin-right: 6px;
    color: var(--yellow);
    content: "●";
}

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

.phone {
    position: relative;
    z-index: 2;
    width: 285px;
    padding: 12px;
    border: 3px solid rgba(255, 255, 255, .64);
    border-radius: 43px;
    background: #17131f;
    box-shadow:
        0 45px 90px rgba(7, 2, 22, .44),
        inset 0 0 0 2px rgba(255, 255, 255, .1);
    transform: rotate(4deg);
}

.phone-speaker {
    position: absolute;
    z-index: 4;
    top: 19px;
    left: 50%;
    width: 70px;
    height: 17px;
    border-radius: 999px;
    background: #17131f;
    transform: translateX(-50%);
}

.phone-screen {
    min-height: 535px;
    padding: 35px 20px 25px;
    overflow: hidden;
    border-radius: 32px;
    color: var(--deep-purple);
    text-align: center;
    background:
        radial-gradient(circle at 50% 20%, #fff 0, #fff7dc 65%);
}

.phone-screen p {
    margin: 28px 0 4px;
    font: 800 12px/1 "Outfit", sans-serif;
    letter-spacing: .16em;
}

.phone-screen > strong {
    display: block;
    margin-top: 18px;
    font-size: 14px;
}

.mini-logo {
    color: var(--purple);
    font: 900 19px/1 "Outfit", sans-serif;
    letter-spacing: .08em;
}

.gacha-machine {
    position: relative;
    width: 190px;
    height: 285px;
    margin: 18px auto 0;
    border-radius: 85px 85px 28px 28px;
    background: linear-gradient(135deg, #7342e5, #41208e);
    box-shadow: 0 22px 35px rgba(91, 43, 212, .27);
}

.gacha-window {
    position: absolute;
    top: 18px;
    left: 20px;
    width: 150px;
    height: 135px;
    overflow: hidden;
    border: 7px solid #fff;
    border-radius: 70px 70px 30px 30px;
    background: #dff5ff;
}

.capsule {
    position: absolute;
    width: 42px;
    height: 32px;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: rotate(-20deg);
}

.capsule::after {
    position: absolute;
    top: 13px;
    left: -2px;
    width: 40px;
    height: 3px;
    background: #fff;
    content: "";
}

.capsule-pink {
    right: 20px;
    bottom: 17px;
    background: var(--pink);
}

.capsule-blue {
    bottom: 12px;
    left: 20px;
    background: var(--blue);
    transform: rotate(20deg);
}

.capsule-yellow {
    right: 48px;
    bottom: 45px;
    background: var(--yellow);
}

.capsule-green {
    top: 34px;
    left: 26px;
    background: var(--green);
}

.gacha-handle {
    position: absolute;
    top: 173px;
    left: 50%;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 8px solid #f3c832;
    border-radius: 50%;
    color: var(--deep-purple);
    background: var(--yellow);
    font-weight: 900;
    transform: translateX(-50%);
}

.gacha-exit {
    position: absolute;
    bottom: 17px;
    left: 50%;
    width: 80px;
    height: 34px;
    border-radius: 17px 17px 9px 9px;
    background: #251451;
    transform: translateX(-50%);
}

.floating-card {
    position: absolute;
    z-index: 3;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 16px;
    color: var(--deep-purple);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 35px rgba(10, 5, 30, .22);
    font: 800 12px/1 "Outfit", sans-serif;
    letter-spacing: .1em;
    backdrop-filter: blur(10px);
}

.floating-gacha {
    top: 80px;
    left: 2px;
    transform: rotate(-8deg);
}

.floating-scratch {
    top: 230px;
    right: -10px;
    transform: rotate(7deg);
}

.floating-garapon {
    bottom: 90px;
    left: 15px;
    transform: rotate(-4deg);
}

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

.section-heading h2 {
    margin: 0;
    color: var(--deep-purple);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.35;
    letter-spacing: -.035em;
}

.section-heading > p:last-child {
    margin: 23px auto 0;
    color: var(--muted);
    font-size: 16px;
}

.benefit-grid,
.feature-grid,
.scene-grid {
    display: grid;
    gap: 24px;
}

.benefit-grid {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-grid article {
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: 26px;
}

.benefit-grid span,
.feature-number {
    color: var(--purple);
    font: 800 13px/1 "Outfit", sans-serif;
    letter-spacing: .12em;
}

.benefit-grid h3,
.feature-card h3,
.scene-grid h3 {
    margin: 13px 0 8px;
    color: var(--deep-purple);
    font-size: 21px;
}

.benefit-grid p,
.feature-card > p,
.scene-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.feature-section {
    padding-top: 50px;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    padding: 25px 25px 30px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--cream);
}

.feature-illustration {
    display: grid;
    min-height: 220px;
    margin-bottom: 27px;
    place-items: center;
    border-radius: 22px;
}

.feature-gacha .feature-illustration {
    background: #ede4ff;
}

.feature-scratch .feature-illustration {
    background: #ffe4ed;
}

.feature-garapon .feature-illustration {
    background: #fff1bd;
}

.feature-capsule {
    position: relative;
    width: 130px;
    height: 96px;
    border: 9px solid #fff;
    border-radius: 50%;
    background:
        linear-gradient(to bottom, var(--pink) 0 48%, #fff 48% 54%, var(--blue) 54%);
    box-shadow: 0 20px 32px rgba(37, 20, 81, .2);
    transform: rotate(-14deg);
}

.scratch-ticket {
    display: grid;
    width: 180px;
    height: 115px;
    place-items: center;
    border: 8px solid #fff;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(135deg, var(--pink), #ff86ae);
    box-shadow: 0 20px 32px rgba(37, 20, 81, .18);
    font-size: 56px;
    font-weight: 900;
    transform: rotate(5deg);
}

.garapon-drum {
    display: grid;
    width: 145px;
    height: 145px;
    place-items: center;
    border: 11px solid #fff;
    border-radius: 44% 56% 48% 52%;
    color: var(--deep-purple);
    background: var(--yellow);
    box-shadow: 0 20px 32px rgba(37, 20, 81, .18);
    font-size: 48px;
    font-weight: 900;
    transform: rotate(-7deg);
}

.feature-card > span {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--purple);
    background: #fff;
    font-size: 12px;
    font-weight: 800;
}

.demo-section {
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, #6937c6 0, transparent 30%),
        linear-gradient(145deg, #1c0d3b, #2b145a);
}

.light-heading h2,
.light-heading p {
    color: #fff;
}

.light-heading > p:last-child {
    color: rgba(255, 255, 255, .7);
}

.demo-notice {
    max-width: 720px;
    margin: -25px auto 38px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 216, 77, .28);
    border-radius: 16px;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 216, 77, .08);
    text-align: center;
    font-size: 13px;
}

.demo-notice strong {
    margin-right: 10px;
    color: var(--yellow);
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.demo-tab {
    min-width: 110px;
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: rgba(255, 255, 255, .7);
    background: transparent;
    font-weight: 800;
}

.demo-tab.is-active {
    color: var(--deep-purple);
    border-color: var(--yellow);
    background: var(--yellow);
}

.demo-stage {
    position: relative;
    max-width: 620px;
    min-height: 600px;
    margin: auto;
    padding: 42px;
    overflow: hidden;
    border-radius: 36px;
    color: var(--deep-purple);
    background: #fffaf0;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .32);
    text-align: center;
}

.demo-mode-label {
    display: inline-block;
    margin: 0;
    padding: 5px 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--purple);
    font: 800 11px/1.4 "Outfit", sans-serif;
    letter-spacing: .13em;
}

.demo-stage h3 {
    margin: 20px 0 4px;
    font: 800 28px/1.3 "Outfit", sans-serif;
    letter-spacing: .05em;
}

#demo-guide {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.demo-machine {
    display: grid;
    min-height: 340px;
    place-items: center;
}

.demo-gacha {
    position: relative;
    width: 205px;
    height: 290px;
    border-radius: 90px 90px 28px 28px;
    background: linear-gradient(135deg, #7546df, #43218d);
    box-shadow: 0 22px 35px rgba(91, 43, 212, .28);
}

.demo-gacha-window {
    position: absolute;
    top: 17px;
    left: 22px;
    width: 161px;
    height: 143px;
    overflow: hidden;
    border: 8px solid #fff;
    border-radius: 80px 80px 33px 33px;
    background: #dff5ff;
}

.demo-gacha-window i {
    position: absolute;
    width: 47px;
    height: 35px;
    border: 4px solid #fff;
    border-radius: 50%;
}

.demo-gacha-window i:nth-child(1) {
    bottom: 13px;
    left: 14px;
    background: var(--pink);
}

.demo-gacha-window i:nth-child(2) {
    right: 12px;
    bottom: 18px;
    background: var(--blue);
}

.demo-gacha-window i:nth-child(3) {
    right: 48px;
    bottom: 45px;
    background: var(--yellow);
}

.demo-gacha-window i:nth-child(4) {
    top: 36px;
    left: 20px;
    background: var(--green);
}

.demo-gacha-window i:nth-child(5) {
    top: 30px;
    right: 18px;
    background: #a988ff;
}

.demo-handle {
    position: absolute;
    top: 178px;
    left: 50%;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 8px solid #f2c52c;
    border-radius: 50%;
    color: var(--deep-purple);
    background: var(--yellow);
    font-size: 23px;
    font-weight: 900;
    transform: translateX(-50%);
    transition: transform .5s ease;
}

.demo-gacha-exit {
    position: absolute;
    bottom: 16px;
    left: 50%;
    width: 85px;
    height: 34px;
    border-radius: 17px 17px 8px 8px;
    background: #24134c;
    transform: translateX(-50%);
}

.demo-machine.is-playing .demo-handle {
    transform: translateX(-50%) rotate(360deg);
}

.demo-machine.is-playing .demo-gacha-window i {
    animation: capsule-shake .16s linear infinite alternate;
}

.demo-scratch {
    position: relative;
    width: min(370px, 100%);
    min-height: 210px;
    overflow: hidden;
    border: 9px solid #fff;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff4f91, #ff9fba);
    box-shadow: 0 22px 40px rgba(255, 79, 145, .25);
}

.scratch-cover,
.scratch-prize {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    font-weight: 900;
}

.scratch-prize {
    color: var(--deep-purple);
    background: var(--yellow);
    font: 900 42px/1 "Outfit", sans-serif;
}

.scratch-cover {
    z-index: 2;
    color: #fff;
    background:
        repeating-linear-gradient(
            135deg,
            #9b8da5 0,
            #9b8da5 14px,
            #b9adbf 14px,
            #b9adbf 28px
        );
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.demo-scratch.is-scratched .scratch-cover {
    opacity: 0;
    transform: translateX(105%) rotate(4deg);
}

.demo-garapon {
    position: relative;
    width: 300px;
    height: 290px;
}

.demo-garapon-drum {
    position: absolute;
    top: 15px;
    left: 45px;
    display: grid;
    width: 200px;
    height: 190px;
    place-items: center;
    border: 13px solid #fff;
    border-radius: 42% 58% 47% 53%;
    color: var(--deep-purple);
    background: var(--yellow);
    box-shadow: 0 22px 38px rgba(37, 20, 81, .25);
    font-size: 58px;
    font-weight: 900;
}

.garapon-handle {
    position: absolute;
    z-index: 3;
    top: 87px;
    right: 5px;
    width: 78px;
    height: 18px;
    border: 0;
    border-radius: 10px;
    background: #f24e82;
    transform-origin: left center;
}

.garapon-handle::after {
    position: absolute;
    top: -10px;
    right: -13px;
    width: 30px;
    height: 38px;
    border-radius: 9px;
    background: var(--deep-purple);
    content: "";
}

.garapon-ball {
    position: absolute;
    right: 53px;
    bottom: 15px;
    width: 34px;
    height: 34px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0;
}

.demo-machine.is-playing .demo-garapon-drum {
    animation: garapon-spin .25s linear infinite;
}

.demo-machine.is-playing .garapon-handle {
    animation: handle-spin .45s linear infinite;
}

.demo-machine.is-playing .garapon-ball {
    animation: ball-drop .8s .5s ease forwards;
}

.button-demo {
    min-width: 220px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), #7b43df);
    box-shadow: 0 14px 28px rgba(91, 43, 212, .25);
}

.demo-result {
    position: absolute;
    z-index: 5;
    inset: 0;
    padding: 175px 30px 30px;
    color: #fff;
    background: rgba(37, 20, 81, .96);
}

.demo-result::before {
    display: grid;
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--deep-purple);
    background: var(--yellow);
    content: "福";
    font-size: 37px;
    font-weight: 900;
}

.demo-result p {
    margin: 0;
}

.demo-result strong {
    display: block;
    margin: 8px 0 25px;
    color: var(--yellow);
    font-size: 30px;
}

.demo-result button {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    color: #fff;
    background: transparent;
}

.scene-grid {
    grid-template-columns: repeat(4, 1fr);
}

.scene-grid article {
    padding: 30px;
    border-radius: 25px;
    background: var(--cream);
}

.scene-icon {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--purple);
    font-size: 22px;
    font-weight: 900;
    transform: rotate(-5deg);
}

.flow-section {
    background: #f6f1ff;
}

.flow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-list li {
    position: relative;
    padding: 30px 25px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(37, 20, 81, .07);
}

.flow-list li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -16px;
    color: var(--purple);
    content: "→";
    font-weight: 900;
}

.flow-list span {
    color: var(--purple);
    font: 800 13px/1 "Outfit", sans-serif;
}

.flow-list h3 {
    margin: 14px 0 8px;
    color: var(--deep-purple);
    font-size: 18px;
}

.flow-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-section {
    color: #fff;
    background:
        radial-gradient(circle at 85% 0, #7540d4 0, transparent 30%),
        linear-gradient(135deg, #251451, #3f1b80);
    text-align: center;
}

.contact-inner {
    max-width: 850px;
}

.contact-inner .eyebrow {
    color: var(--yellow);
}

.contact-inner h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.35;
}

.contact-inner > p {
    max-width: 650px;
    margin: 24px auto 34px;
    color: rgba(255, 255, 255, .75);
}

.button-contact {
    color: var(--deep-purple);
    background: var(--yellow);
    box-shadow: 0 15px 35px rgba(255, 216, 77, .2);
}

.contact-inner small {
    display: block;
    margin-top: 28px;
    color: rgba(255, 255, 255, .5);
}

.site-footer {
    padding: 38px 20px;
    color: rgba(255, 255, 255, .55);
    background: #160b2e;
    text-align: center;
    font-size: 12px;
}

.footer-brand {
    display: inline-block;
    color: #fff;
    font: 800 24px/1 "Outfit", sans-serif;
    letter-spacing: .08em;
}

.site-footer p {
    margin: 10px 0 18px;
}

@keyframes capsule-shake {
    from { transform: translate(-3px, -2px) rotate(-8deg); }
    to { transform: translate(3px, 3px) rotate(8deg); }
}

@keyframes garapon-spin {
    to { transform: rotate(360deg); }
}

@keyframes handle-spin {
    to { transform: rotate(360deg); }
}

@keyframes ball-drop {
    0% {
        opacity: 0;
        transform: translate(-50px, -80px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@media (max-width: 900px) {
    .global-navigation {
        position: fixed;
        top: 78px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 20px;
        border-radius: 20px;
        color: var(--deep-purple);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .global-navigation.is-open {
        display: grid;
    }

    .nav-contact {
        text-align: center;
    }

    .menu-button {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-top: 140px;
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        min-height: 590px;
    }

    .hero {
        min-height: 1260px;
    }

    .benefit-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-inline: auto;
    }

    .scene-grid,
    .flow-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-list li:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .section {
        width: min(100% - 28px, 1120px);
        padding-block: 72px;
    }

    .header-inner {
        width: calc(100% - 28px);
        min-height: 68px;
    }

    .global-navigation {
        top: 68px;
        right: 14px;
        left: 14px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand strong {
        font-size: 21px;
    }

    .hero {
        min-height: 1160px;
    }

    .hero-inner {
        width: calc(100% - 28px);
        min-height: auto;
        padding-top: 125px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.9;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-visual {
        min-height: 530px;
        transform: scale(.9);
    }

    .floating-scratch {
        right: 0;
    }

    .benefit-grid article,
    .scene-grid article {
        padding: 25px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .scene-grid,
    .flow-list {
        grid-template-columns: 1fr;
    }

    .flow-list li:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -22px;
        transform: translateX(50%) rotate(90deg);
    }

    .flow-list li:nth-child(2)::after {
        display: block;
    }

    .demo-inner {
        width: calc(100% - 20px);
    }

    .demo-tabs {
        gap: 5px;
    }

    .demo-tab {
        min-width: 0;
        flex: 1;
        padding-inline: 8px;
        font-size: 13px;
    }

    .demo-stage {
        min-height: 560px;
        padding: 35px 16px;
        border-radius: 27px;
    }

    .demo-stage h3 {
        font-size: 23px;
    }

    .demo-notice {
        text-align: left;
    }

    .demo-notice strong {
        display: block;
        margin-bottom: 4px;
    }

    .demo-result {
        padding-top: 145px;
    }

    .contact-inner h2 {
        font-size: 34px;
    }

    .button-contact {
        width: 100%;
        padding-inline: 15px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* Embedded real LUCKIT demo */
.phone-live-demo {
    height: 565px;
    overflow: hidden;
}

.hero-demo-frame {
    display: block;
    width: 100%;
    height: 535px;
    border: 0;
    border-radius: 32px;
    background: #110827;
}

.live-demo-window {
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30px;
    background: #110827;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .34);
}

.live-demo-toolbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 46px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7);
    background: #1c1035;
    font-size: 11px;
}

.live-demo-toolbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b87;
    box-shadow:
        17px 0 #ffd84d,
        34px 0 #50d49a;
}

.live-demo-toolbar strong {
    color: #fff;
    font: 800 11px/1 "Outfit", sans-serif;
    letter-spacing: .1em;
}

.live-demo-toolbar small {
    justify-self: end;
    color: #fde68a;
    font-weight: 800;
}

.live-demo-frame {
    display: block;
    width: 100%;
    height: 780px;
    border: 0;
    background: #110827;
}

.live-demo-help {
    margin: 18px auto 0;
    color: rgba(255, 255, 255, .58);
    text-align: center;
    font-size: 12px;
}

@media (max-width: 600px) {
    .phone-live-demo {
        width: 310px;
    }

    .live-demo-window {
        border-radius: 22px;
    }

    .live-demo-frame {
        height: 750px;
    }

    .live-demo-toolbar {
        padding-inline: 13px;
    }

    .live-demo-toolbar small {
        display: none;
    }
}


/* LUCKIT contact form */
.contact-lead {
    max-width: 680px;
}

.contact-form {
    position: relative;
    max-width: 820px;
    margin: 42px auto 0;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
    text-align: left;
    backdrop-filter: blur(12px);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-field-wide {
    grid-column: 1 / -1;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.form-field label em,
.form-field label span {
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-style: normal;
}

.form-field label em {
    color: #3b0764;
    background: #fde047;
}

.form-field label span {
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .13);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 13px;
    outline: 0;
    color: #251451;
    background: rgba(255, 255, 255, .96);
    font: inherit;
    font-size: 15px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-field input,
.form-field select {
    min-height: 52px;
    padding: 0 15px;
}

.form-field textarea {
    min-height: 170px;
    padding: 14px 15px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #fde047;
    box-shadow: 0 0 0 4px rgba(253, 224, 71, .17);
}

.form-field > small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
}

.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 25px 0;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.7;
}

.privacy-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #fde047;
}

.contact-form .button-contact {
    display: flex;
    width: min(100%, 360px);
    margin: 0 auto;
    cursor: pointer;
}

.contact-form-note {
    margin: 12px 0 0 !important;
    color: rgba(255, 255, 255, .5) !important;
    text-align: center;
    font-size: 10px;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-success,
.contact-errors {
    max-width: 760px;
    margin: 38px auto 0;
    padding: 25px;
    border-radius: 20px;
    text-align: left;
}

.contact-success {
    border: 1px solid rgba(80, 212, 154, .5);
    background: rgba(80, 212, 154, .12);
}

.contact-success strong,
.contact-success span {
    display: block;
}

.contact-success strong {
    color: #a7f3d0;
    font-size: 18px;
}

.contact-success span {
    margin-top: 5px;
    color: #fff;
    font-weight: 800;
}

.contact-success p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.contact-errors {
    border: 1px solid rgba(251, 113, 133, .55);
    background: rgba(190, 18, 60, .2);
}

.contact-errors strong {
    color: #fecdd3;
}

.contact-errors ul {
    margin: 10px 0 0;
    padding-left: 20px;
    color: #ffe4e6;
    font-size: 13px;
}

.contact-operator {
    margin-top: 28px !important;
}

@media (max-width: 680px) {
    .contact-form {
        padding: 25px 18px;
        border-radius: 22px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-field-wide {
        grid-column: auto;
    }
}
