/* Module: core/reset.css — Reset & Base */
/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-gutter: auto;
    background-color: var(--and-bg-base);
    color-scheme: light;
}

/* Sembunyikan scrollbar — scroll tetap berfungsi */
html,
body,
.and-body,
.and-body * {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.and-body::-webkit-scrollbar,
.and-body *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

body.and-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--and-bg-base);
    color: var(--and-text-primary);
    min-height: 100svh;
    overscroll-behavior: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Status bar chrome â€” transparan 80%, tanpa border pemisah */
#and-spa-app::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--and-safe-top);
    background: var(--and-statusbar-tint);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    pointer-events: none;
    border: 0;
    box-shadow: none;
}

/* Ambient gradient blobs */
body.and-body::before,
body.and-body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

body.and-body::before {
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: rgba(96, 165, 250, 0.32);
    animation: and-liquid-pulse 8s ease-in-out infinite;
}

body.and-body::after {
    bottom: -10%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: rgba(99, 102, 241, 0.18);
}

@keyframes and-liquid-pulse {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
}

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

ul,
ol {
    list-style: none;
}
