:root {
    --bg-warm: #ead7c0;
    --panel: rgba(255, 248, 240, 0.42);
    --panel-strong: rgba(255, 252, 248, 0.55);
    --panel-soft: rgba(255, 245, 235, 0.72);
    --text: #3f1d16;
    --muted: rgba(63, 29, 22, 0.72);
    --line: rgba(113, 68, 54, 0.12);
    --shadow: 0 28px 60px rgba(66, 35, 19, 0.18);
    --button-shadow: 0 16px 24px rgba(63, 20, 12, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: #c0a58b;
    overflow-x: clip;
}

body.is-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 24%),
        radial-gradient(circle at 80% 72%, rgba(255, 193, 122, 0.28), transparent 26%),
        linear-gradient(180deg, rgba(236, 223, 208, 0.96), rgba(214, 182, 158, 0.94));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 0.42s ease, visibility 0.42s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader-spinner {
    position: relative;
    width: 4.8rem;
    height: 4.8rem;
    display: grid;
    place-items: center;
}

.page-loader-spinner span {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: rgba(94, 26, 17, 0.9);
    border-radius: 50%;
    animation: loader-spin 1.1s linear infinite;
}

.page-loader-spinner span:nth-child(2) {
    inset: 0.45rem;
    border-top-color: rgba(94, 26, 17, 0.64);
    animation-duration: 1.35s;
    animation-direction: reverse;
}

.page-loader-spinner span:nth-child(3) {
    inset: 0.9rem;
    border-top-color: rgba(94, 26, 17, 0.38);
    animation-duration: 1.65s;
}

@keyframes loader-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

body.is-animated .glass-panel {
    animation: panel-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-animated .navbar {
    animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

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

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

.background-blur {
    position: fixed;
    inset: -3rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(245, 226, 201, 0.36), rgba(140, 88, 57, 0.2));
    filter: blur(6px) saturate(0.96);
    transform: scale(1.08);
}

.background-blur video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.background-blur::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 196, 120, 0.42), transparent 24%),
        radial-gradient(circle at 76% 24%, rgba(255, 251, 246, 0.62), transparent 26%),
        radial-gradient(circle at 52% 100%, rgba(79, 47, 38, 0.3), transparent 20%);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.985);
    filter: blur(8px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.reveal-left {
    transform: translate3d(-54px, 20px, 0) scale(0.985);
}

.reveal-right {
    transform: translate3d(54px, 20px, 0) scale(0.985);
}

.reveal-scale {
    transform: translate3d(0, 30px, 0) scale(0.94);
}

.float-soft {
    animation: float-soft 6.6s ease-in-out infinite;
}

.float-soft-alt {
    animation: float-soft-alt 7.2s ease-in-out infinite;
}

.float-soft-delay {
    animation: float-soft 6.8s ease-in-out 1.1s infinite;
}

.glow-sweep {
    position: relative;
    overflow: hidden;
}

.glow-sweep::after {
    content: "";
    position: absolute;
    inset: -120% auto -120% -35%;
    width: 34%;
    transform: rotate(18deg);
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: glow-sweep 7.8s linear infinite;
    pointer-events: none;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes panel-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 32px, 0) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes float-soft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes float-soft-alt {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 12px, 0);
    }
}

@keyframes glow-sweep {
    0% {
        transform: translate3d(-180%, 0, 0) rotate(18deg);
        opacity: 0;
    }

    10%,
    70% {
        opacity: 1;
    }

    100% {
        transform: translate3d(420%, 0, 0) rotate(18deg);
        opacity: 0;
    }
}

@keyframes navbar-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -9px, 0);
    }
}

@keyframes loader-bounce {
    0%,
    80%,
    100% {
        transform: scale(0.72);
        opacity: 0.45;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.page-shell {
    position: relative;
    z-index: 1;
    padding: 1.35rem;
}

.glass-panel {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 2.15rem 2.3rem 2.8rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.45), rgba(255, 246, 237, 0.3));
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.glass-panel::before,
.glass-panel::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 50%;
    filter: blur(44px);
    opacity: 0.55;
    pointer-events: none;
}

.glass-panel::before {
    top: 7%;
    left: 16%;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 255, 255, 0.5);
}

.glass-panel::after {
    right: 9%;
    bottom: 12%;
    width: 21rem;
    height: 21rem;
    background: rgba(255, 236, 205, 0.38);
}

.navbar,
.section-grid,
.cta-strip,
.footer-note {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.6rem;
}

.brand img {
    width: clamp(78px, 10vw, 112px);
}

.nav-center {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.nav-mascot {
    display: flex;
    justify-content: center;
    width: min(100%, 18rem);
    pointer-events: none;
    animation: navbar-float 5.8s ease-in-out infinite;
}

.nav-mascot img {
    width: 100%;
    max-width: 17rem;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(68, 38, 20, 0.16));
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.nav-links a {
    position: relative;
    opacity: 0.92;
}

.nav-links a:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 1.4rem;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 0.95rem 1.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-dark {
    color: #fff7f0;
    background: linear-gradient(180deg, #46140e, #2d0806);
    box-shadow: var(--button-shadow);
}

.button-small {
    min-width: 0;
    padding: 0.7rem 1.2rem;
    font-size: 0.72rem;
}

.section-grid {
    display: grid;
    align-items: center;
    gap: 2rem;
}

.hero {
    grid-template-columns: 1.05fr 1fr;
    margin-bottom: 2rem;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    margin: 0 0 1rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(92, 51, 29, 0.22);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.9), rgba(255, 243, 233, 0.72));
    box-shadow: 0 14px 28px rgba(92, 51, 29, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.42);
    color: rgba(63, 29, 22, 0.8);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.support-badge::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #5e1a11, #2d0806);
    box-shadow: 0 0 0 4px rgba(94, 26, 17, 0.1);
}

.support-badge strong {
    color: #40140c;
    font-family: "Sora", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(63, 29, 22, 0.75);
}

.hero-copy h1,
.story-block h2,
.cta-strip h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    line-height: 1.06;
}

.hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 5vw, 4.25rem);
}

.lead,
.story-block p,
.footer-note p,
.phone-frame p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.8;
}

.hero-actions {
    margin: 2rem 0 1.5rem;
}

.feature-chips {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.feature-chip,
.store-button {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(255, 251, 247, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 20px rgba(88, 52, 34, 0.08);
}

.feature-chip span {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
}

.feature-chip small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.53rem;
    color: rgba(63, 29, 22, 0.75);
}

.hero-visual-wrap,
.spotlight-art {
    position: relative;
}

.hero-visual-large {
    width: min(100%, 480px);
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    padding: 1.15rem;
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.54);
    box-shadow: 0 24px 45px rgba(89, 54, 32, 0.14);
}

.hero-visual-large img,
.hero-visual-large video,
.product-thumb img,
.spotlight-visual img,
.phone-product img,
.phone-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-large img {
    border-radius: 50%;
    object-position: center 15%;
}

.hero-visual-large video {
    border-radius: 50%;
    object-position: center center;
}

.hero-character-deck {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-character {
    position: absolute;
    width: 11rem;
    margin: 0;
    padding: 0.55rem;
    border-radius: 1.4rem;
    background: rgba(255, 249, 243, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 38px rgba(92, 51, 29, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-character img {
    width: 100%;
    aspect-ratio: 0.82 / 1;
    border-radius: 1rem;
    object-fit: cover;
    object-position: center top;
}

.hero-character figcaption {
    padding: 0.75rem 0.15rem 0.15rem;
}

.hero-character strong,
.hero-character span {
    display: block;
}

.hero-character strong {
    font-size: 0.8rem;
}

.hero-character span {
    margin-top: 0.2rem;
    font-size: 0.65rem;
    line-height: 1.5;
    color: rgba(63, 29, 22, 0.72);
}

.hero-character-left {
    top: 1.4rem;
    left: -2.6rem;
    transform: rotate(-7deg);
}

.hero-character-right {
    right: -2.8rem;
    bottom: 1.7rem;
    transform: rotate(6deg);
}

.floating-badge {
    position: absolute;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 246, 238, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 34px rgba(92, 51, 29, 0.12);
}

.floating-badge span {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(63, 29, 22, 0.62);
}

.floating-badge strong {
    font-size: 0.9rem;
}

.floating-badge-top {
    right: -0.7rem;
    bottom: 0.9rem;
}

.cards-intro {
    grid-template-columns: 1.1fr 0.9fr;
    margin: 1.8rem 0 3rem;
}

.card-list {
    display: flex;
    gap: 1.3rem;
}

.info-card {
    flex: 1;
    padding: 1.05rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, var(--panel-strong), rgba(255, 246, 239, 0.5));
    box-shadow: 0 18px 30px rgba(88, 53, 34, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.product-thumb {
    width: 10.5rem;
    height: 10.5rem;
    margin: -3.2rem auto 1rem;
    padding: 0.45rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 22px rgba(61, 31, 24, 0.15);
}

.product-thumb img {
    border-radius: 50%;
    object-position: center 18%;
}

.portrait-thumb {
    width: min(100%, 11.4rem);
    height: 14rem;
    margin: -3.35rem auto 1rem;
    border-radius: 1.45rem;
}

.portrait-thumb img {
    border-radius: 1.1rem;
    object-fit: cover;
    object-position: center top;
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.85), rgba(255, 239, 226, 0.62));
}

.portrait-thumb-alt img {
    object-position: center 12%;
}

.alt-thumb img {
    object-fit: contain;
    object-position: center;
    background: radial-gradient(circle at center, rgba(255, 250, 245, 0.92), rgba(255, 240, 228, 0.55));
}

.product-card h3 {
    margin: 0.5rem 0 0.4rem;
    font-size: 1rem;
}

.product-card p {
    margin: 0 0 1rem;
    min-height: 3.8rem;
    font-size: 0.76rem;
    line-height: 1.7;
    color: var(--muted);
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.price-tag {
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    color: #fff6f0;
    background: linear-gradient(180deg, #42120d, #240505);
}

.story-block h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 3vw, 3rem);
}

.story-block p {
    max-width: 34rem;
    margin: 1rem 0 1.3rem;
}

.jenis-gallery {
    margin: 0 0 3rem;
}

.jenis-gallery-head {
    margin-bottom: 1.4rem;
}

.jenis-gallery-head h2 {
    max-width: 15ch;
}

.jenis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.jenis-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.8rem;
    overflow: hidden;
}

.jenis-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1.36 / 1;
    border-radius: 1.15rem;
    overflow: hidden;
    background: rgba(255, 251, 247, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.jenis-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jenis-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 247, 240, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(63, 29, 22, 0.76);
}

.jenis-card h3 {
    margin: 0;
    font-size: 0.98rem;
}

.jenis-card p {
    margin: 0;
    min-height: 0;
    font-size: 0.74rem;
    line-height: 1.7;
    color: var(--muted);
}

.service-list,
.phone-list {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
}

.service-list li,
.phone-list li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--muted);
}

.service-list li + li,
.phone-list li + li {
    margin-top: 0.58rem;
}

.service-list li::before,
.phone-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #5e1a11;
    box-shadow: 0 0 0 4px rgba(94, 26, 17, 0.08);
}

.service-list {
    max-width: 31rem;
    font-size: 0.82rem;
    line-height: 1.75;
}

.service-list-wide {
    max-width: 36rem;
}

.spotlight {
    grid-template-columns: 1fr 0.95fr;
    margin-bottom: 3rem;
}

.story-block-wide h2 {
    max-width: 13ch;
}

.spotlight-art {
    min-height: 26rem;
    display: grid;
    place-items: center;
}

.spotlight-ring {
    position: absolute;
    inset: 2rem;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 214, 152, 0.35), transparent 58%);
    filter: blur(8px);
}

.spotlight-visual {
    position: relative;
    width: 25rem;
    height: 25rem;
    padding: 0.7rem;
    border-radius: 50%;
    background: rgba(255, 251, 247, 0.6);
    box-shadow: 0 24px 46px rgba(98, 55, 31, 0.16);
}

.spotlight-visual img {
    border-radius: 50%;
    object-position: center 20%;
}

.floating-badge-price {
    top: 30%;
    right: 0.3rem;
    border-radius: 1.15rem;
}

.dots {
    position: absolute;
    inset: 1rem;
    background-image: radial-gradient(circle, rgba(77, 42, 28, 0.75) 1.8px, transparent 2px);
    background-size: 2.4rem 2.4rem;
    mask-image: radial-gradient(circle at center, black 45%, transparent 74%);
    opacity: 0.7;
}

.app-showcase {
    grid-template-columns: 1.15fr 0.85fr;
    margin-bottom: 3rem;
}

.phone-gallery {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}

.phone-frame {
    position: relative;
    width: 16rem;
    min-height: 28.5rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 249, 243, 0.62), rgba(255, 243, 235, 0.46));
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 18px 32px rgba(88, 53, 34, 0.12);
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.mini-pill {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 800;
    color: #fff8f2;
    background: linear-gradient(180deg, #491611, #280807);
}

.phone-icons {
    display: flex;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.phone-icons span {
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    font-size: 0.55rem;
    font-weight: 800;
    background: rgba(255, 251, 247, 0.9);
}

.phone-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.phone-list {
    font-size: 0.72rem;
    line-height: 1.6;
}

.phone-list-tight {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.phone-list-tight li + li {
    margin-top: 0.46rem;
}

.phone-product {
    text-align: center;
}

.phone-product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-position: center 20%;
    background: rgba(255, 250, 245, 0.78);
    padding: 0.3rem;
}

.phone-product:last-child img {
    object-fit: contain;
    object-position: center;
}

.phone-product strong {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.66rem;
}

.phone-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 8.8rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    color: #fff9f4;
    background: linear-gradient(180deg, #481611, #260606);
    font-size: 0.65rem;
    font-weight: 700;
}

.phone-frame-detail {
    transform: translateY(-1.4rem);
}

.phone-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    padding: 0.45rem;
    border-radius: 1.45rem;
    background: rgba(255, 252, 248, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.phone-detail-image img {
    border-radius: 1.15rem;
    object-position: center 16%;
}

.phone-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.phone-footer small {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.6rem;
    color: rgba(63, 29, 22, 0.6);
}

.app-copy h2 {
    max-width: none;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.store-button {
    width: auto;
    min-width: 3.9rem;
    padding-inline: 0.95rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    height: auto;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.icon-link svg,
.contact-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.contact-links {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 250, 245, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 24px rgba(88, 52, 34, 0.08);
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: rgba(255, 242, 232, 0.85);
    color: #4f160f;
}

.contact-link strong,
.contact-link small {
    display: block;
}

.contact-link strong {
    font-size: 0.84rem;
}

.contact-link small {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: rgba(63, 29, 22, 0.72);
}

.button-light {
    color: var(--text);
    background: rgba(255, 251, 247, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 20px rgba(88, 52, 34, 0.08);
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1rem;
}

.cta-strip h2 {
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.simplengat-cta {
    margin-top: 2.4rem;
    padding: 1.5rem;
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.76), rgba(255, 242, 232, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 18px 34px rgba(88, 52, 34, 0.1);
}

.simplengat-cta-copy {
    max-width: 42rem;
}

.simplengat-cta-copy .eyebrow {
    margin-bottom: 0.55rem;
}

.simplengat-cta-copy h2 {
    margin: 0;
    max-width: 16ch;
    line-height: 1.12;
}

.simplengat-cta-copy p:last-child {
    margin: 0.95rem 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.8;
}

.simplengat-cta-button {
    min-width: 190px;
    white-space: nowrap;
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .page-loader {
        transition: none !important;
    }
}

.footer-note {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.floating-wa {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 1rem 0.72rem 0.78rem;
    border-radius: 999px;
    color: #fff9f4;
    background: linear-gradient(180deg, #2f9e57, #16753d);
    box-shadow: 0 18px 34px rgba(10, 79, 38, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-wa:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 24px 40px rgba(10, 79, 38, 0.34);
}

.floating-wa-icon {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.floating-wa-icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.floating-wa-copy {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    line-height: 1.1;
}

.floating-wa-copy strong {
    font-size: 0.84rem;
    font-weight: 800;
}

.floating-wa-copy small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-top {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.5), rgba(255, 242, 233, 0.34));
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 30px rgba(88, 52, 34, 0.08);
}

.footer-brand img {
    width: clamp(90px, 10vw, 128px);
    margin-bottom: 1rem;
}

.footer-brand p,
.footer-column p,
.footer-bottom p,
.footer-bottom span {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-title {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(63, 29, 22, 0.8);
}

.footer-column a {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(63, 29, 22, 0.84);
}

.footer-column-highlight {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 250, 245, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.46);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.footer-bottom span {
    font-size: 0.75rem;
    text-align: right;
}

.brief-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.8rem;
    margin-top: 2rem;
    padding: 1.4rem 0 0.8rem;
}

.brief-copy h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.brief-copy p {
    margin: 1rem 0 1.2rem;
    color: var(--muted);
    line-height: 1.8;
}

.brief-form {
    padding: 1.35rem;
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.82), rgba(255, 242, 232, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow: 0 22px 40px rgba(88, 53, 34, 0.12);
}

.brief-form-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    align-items: end;
    padding-bottom: 0.9rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(113, 68, 54, 0.12);
}

.brief-form-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(63, 29, 22, 0.66);
}

.brief-form-intro h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    line-height: 1.2;
}

.brief-form-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.75;
}

.form-section {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.form-section + .form-section {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(113, 68, 54, 0.12);
}

.form-section-head {
    margin-bottom: 0.8rem;
}

.form-section-head h4 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    line-height: 1.25;
}

.form-section-head p {
    margin: 0.28rem 0 0;
    color: rgba(63, 29, 22, 0.64);
    font-size: 0.74rem;
    line-height: 1.65;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.48rem;
    margin: 0;
}

.form-field span,
.form-choice legend {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(100, 60, 45, 0.1);
    border-radius: 1.1rem;
    font: inherit;
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(94, 26, 17, 0.38);
    box-shadow: 0 0 0 4px rgba(94, 26, 17, 0.08);
}

.form-field textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-field input[type="file"] {
    padding: 0.48rem;
}

.form-field input[type="file"]::file-selector-button {
    margin-right: 0.8rem;
    padding: 0.8rem 1rem;
    border: 0;
    border-radius: 0.9rem;
    font: inherit;
    font-weight: 800;
    color: var(--text);
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 8px 16px rgba(88, 52, 34, 0.08);
    cursor: pointer;
}

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

.form-choice {
    border: 0;
    padding: 0;
}

.choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.45rem;
}

.choice-row label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
    min-height: 3.6rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(100, 60, 45, 0.1);
    font-size: 0.78rem;
    color: var(--text);
    cursor: pointer;
}

.choice-row input {
    margin: 0;
    accent-color: #5e1a11;
}

.choice-row input[type="radio"] {
    width: 1.15rem;
    height: 1.15rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.form-actions .button {
    min-width: 220px;
}

.form-note {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(113, 68, 54, 0.12);
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(63, 29, 22, 0.72);
}

@media (max-width: 980px) {
    .glass-panel {
        padding: 1.6rem;
    }

    .hero,
    .cards-intro,
    .spotlight,
    .app-showcase,
    .brief-section,
    .cta-strip {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .navbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand brand"
            "center cta";
        align-items: center;
        gap: 1rem 1.2rem;
    }

    .brand {
        grid-area: brand;
    }

    .nav-center {
        grid-area: center;
        align-items: flex-start;
    }

    .nav-mascot {
        justify-content: flex-start;
        width: min(100%, 14rem);
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.9rem 1.15rem;
        min-width: 0;
        justify-content: flex-start;
    }

    .navbar .button-small {
        grid-area: cta;
        justify-self: end;
    }

    .card-list,
    .phone-gallery {
        flex-direction: column;
    }

    .jenis-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-character-deck {
        position: static;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 1rem;
        pointer-events: auto;
    }

    .hero-character {
        position: relative;
        inset: auto;
        width: min(100%, 11rem);
        transform: none;
    }

    .phone-frame,
    .phone-frame-detail {
        width: 100%;
        max-width: 22rem;
        transform: none;
    }

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

    .brief-form-intro {
        grid-template-columns: 1fr;
    }

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

    .story-block h2,
    .story-block-wide h2,
    .hero-copy h1 {
        max-width: none;
    }

    .spotlight-art {
        min-height: 22rem;
    }

    .spotlight-visual {
        width: min(100%, 21rem);
        height: min(100vw - 4rem, 21rem);
    }

    .cta-strip {
        justify-items: start;
    }

    .simplengat-cta {
        padding: 1.25rem;
    }

    .simplengat-cta-copy h2 {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom span {
        text-align: left;
    }

    .floating-wa {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding: 0.85rem;
    }

    .glass-panel {
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .navbar {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "brand"
            "center"
            "cta";
        justify-items: start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .nav-center {
        gap: 0.7rem;
        width: 100%;
    }

    .nav-mascot {
        width: min(100%, 11.5rem);
    }

    .nav-links {
        width: 100%;
        gap: 0.65rem 0.9rem;
        font-size: 0.65rem;
    }

    .navbar .button-small {
        justify-self: start;
        padding: 0.65rem 0.95rem;
        font-size: 0.66rem;
    }

    .hero-copy h1 {
        font-size: 2.45rem;
    }

    .hero-visual-wrap {
        width: min(100%, 21rem);
        min-height: 24.75rem;
        margin-inline: auto;
        display: block;
        overflow: clip;
    }

    .hero-visual-large {
        width: min(100%, 16.75rem);
        margin-top: 1.15rem;
        padding: 0.7rem;
    }

    .hero-character-deck {
        position: absolute;
        inset: 0;
        display: block;
        margin-top: 0;
        pointer-events: none;
    }

    .hero-character {
        width: 6.25rem;
        padding: 0.28rem;
        border-radius: 0.88rem;
    }

    .hero-character figcaption {
        padding: 0.34rem 0.05rem 0.05rem;
    }

    .hero-character strong {
        font-size: 0.54rem;
        line-height: 1.22;
    }

    .hero-character span {
        font-size: 0.44rem;
        line-height: 1.28;
    }

    .hero-character-left {
        top: 0.15rem;
        left: -0.2rem;
        transform: rotate(-8deg);
    }

    .hero-character-right {
        right: -0.22rem;
        bottom: 3.9rem;
        transform: rotate(6deg);
    }

    .floating-badge-top,
    .floating-badge-price {
        right: 0.4rem;
        bottom: 0.55rem;
        top: auto;
    }

    .floating-badge-top {
        z-index: 2;
        max-width: 8.7rem;
        padding: 0.54rem 0.64rem;
    }

    .floating-badge-top span {
        font-size: 0.5rem;
    }

    .floating-badge-top strong {
        font-size: 0.62rem;
    }

    .card-list {
        gap: 2.6rem;
        padding-top: 1.6rem;
    }

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

    .jenis-card {
        padding: 0.7rem;
    }

    .product-thumb {
        width: 8.8rem;
        height: 8.8rem;
    }

    .portrait-thumb {
        width: min(100%, 9.8rem);
        height: 12rem;
    }

    .spotlight-art {
        min-height: 18rem;
    }

    .phone-nav {
        margin-top: 3.5rem;
    }

    .cta-strip h2 {
        font-size: 1.7rem;
    }

    .simplengat-cta {
        padding: 1rem;
        border-radius: 1.3rem;
    }

    .simplengat-cta-copy p:last-child {
        font-size: 0.8rem;
        line-height: 1.7;
    }

    .brief-form {
        padding: 1rem;
        border-radius: 1.3rem;
    }

    .brief-form-intro h3 {
        font-size: 1.1rem;
    }

    .form-section {
        padding: 0;
        border-radius: 0;
    }

    .choice-row {
        grid-template-columns: 1fr;
    }

    .choice-row label {
        min-height: 0;
        padding: 0.85rem 0.95rem;
        align-items: flex-start;
    }

    .form-actions .button {
        width: 100%;
        min-width: 0;
    }

    .footer-top {
        padding: 1rem;
        border-radius: 1.25rem;
    }

    .footer-brand img {
        width: 92px;
    }

    .footer-brand p,
    .footer-column p,
    .footer-bottom p,
    .footer-bottom span {
        font-size: 0.74rem;
        line-height: 1.7;
    }

    .store-buttons {
        gap: 0.75rem;
    }

    .icon-link {
        padding: 0.82rem 0.9rem;
    }

    .choice-row {
        flex-direction: column;
    }

    .floating-wa {
        right: 0.8rem;
        bottom: 0.8rem;
        gap: 0.55rem;
        padding: 0.66rem 0.8rem 0.66rem 0.68rem;
    }

    .floating-wa-icon {
        width: 2.2rem;
        height: 2.2rem;
    }

    .floating-wa-copy strong {
        font-size: 0.76rem;
    }

    .floating-wa-copy small {
        font-size: 0.58rem;
    }
}