/* =============================================
   RUPA Academia
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #156ca8;
    --dark-blue: #0e285c;
    --red-orange: #ef6244;
    --orange: #f7b244;
    --yellow: #ffd66a;
    --mint: #dff7ec;
    --peach: #fff0df;
    --sky: #e9f6ff;
    --white: #ffffff;
    --off-white: #fcfaf5;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --line: #dbe5ef;
    --text-primary: #183153;
    --text-secondary: #55708d;
    --shadow-sm: 0 10px 30px rgba(14, 40, 92, 0.06);
    --shadow-md: 0 20px 60px rgba(14, 40, 92, 0.12);
    --shadow-lg: 0 30px 80px rgba(14, 40, 92, 0.16);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --radius-pill: 999px;
    --container-max: 1200px;
    --container-padding: clamp(18px, 4vw, 32px);
    --section-padding: clamp(72px, 9vw, 130px);
    --font-heading: "Baloo 2", cursive;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--text-primary);
    background:
        radial-gradient(circle at top left, rgba(247, 178, 68, 0.16), transparent 24%),
        radial-gradient(circle at top right, rgba(168, 122, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #f6f9c9 0%, #fffde9 42%, #f7fbff 100%);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

p {
    max-width: 64ch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-blue);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

ul,
ol {
    padding-left: 1.2rem;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f5fb;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange), var(--blue));
    border-radius: 999px;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--red-orange), var(--blue));
}

.container {
    width: min(100%, var(--container-max));
    margin: 0 auto;
    padding-inline: var(--container-padding);
}

.skip-to-main {
    position: absolute;
    top: -100px;
    left: 18px;
    z-index: 1100;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--dark-blue);
    color: var(--white);
    font-weight: 700;
}

.skip-to-main:focus {
    top: 18px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    padding: 12px 0;
    transition: padding 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 30px rgba(14, 40, 92, 0.08);
}

.header-inner {
    width: min(100% - 32px, var(--container-max));
    margin: 0 auto;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo-link,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.logo-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo-text,
.footer-logo span {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.1vw, 2rem);
    line-height: 1;
    color: var(--dark-blue);
}

.logo-managed-by {
    font-size: 0.68rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 10px;
}

.nav-link,
.nav-cta,
.menu-link,
.menu-cta {
    font-weight: 700;
}

.nav-link {
    padding: 10px 14px;
    color: var(--text-primary);
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: var(--blue);
    background: rgba(21, 108, 168, 0.08);
}

.nav-cta {
    padding: 12px 20px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red-orange), var(--orange));
    box-shadow: 0 10px 24px rgba(239, 98, 68, 0.24);
}

.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: var(--dark-blue);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-size: 1.5rem;
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 28px;
    background: rgba(14, 40, 92, 0.96);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-link,
.menu-cta {
    display: block;
    padding: 16px 18px;
    border-radius: 18px;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-cta {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--dark-blue);
    text-align: center;
}

.hero {
    position: relative;
    padding: clamp(88px, 12vw, 124px) 0 clamp(64px, 8vw, 96px);
    overflow: hidden;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: auto auto 6% -8%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(247, 178, 68, 0.18);
    filter: blur(12px);
}

.hero-playful {
    padding-bottom: clamp(80px, 10vw, 112px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: 32px;
}

.hero-eyebrow,
.section-kicker,
.section-kicker-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-eyebrow,
.section-kicker {
    color: var(--blue);
    background: rgba(21, 108, 168, 0.1);
}

.section-kicker-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.hero-title,
.about-hero-title {
    font-size: clamp(3rem, 7vw, 6.2rem);
    margin-bottom: 22px;
}

.hero-title .line {
    display: block;
}

.accent-blue {
    color: var(--blue);
}

.accent-red {
    color: var(--red-orange);
}

.hero-subtitle,
.about-hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
}

.hero-subtitle strong {
    color: var(--dark-blue);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 34px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 108, 168, 0.12);
    box-shadow: var(--shadow-sm);
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

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

.btn-lg {
    min-height: 62px;
    padding-inline: 32px;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--red-orange), var(--orange));
    box-shadow: 0 14px 30px rgba(239, 98, 68, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.82);
    color: var(--dark-blue);
    border: 1px solid rgba(14, 40, 92, 0.08);
    box-shadow: var(--shadow-sm);
}

.btn-white {
    background: var(--white);
    color: var(--dark-blue);
    box-shadow: 0 20px 36px rgba(14, 40, 92, 0.18);
}

.btn-pulse {
    animation: pulse-shadow 2.6s ease-in-out infinite;
}

@keyframes pulse-shadow {

    0%,
    100% {
        box-shadow: 0 14px 30px rgba(239, 98, 68, 0.22);
    }

    50% {
        box-shadow: 0 14px 36px rgba(239, 98, 68, 0.28), 0 0 0 12px rgba(239, 98, 68, 0.08);
    }
}

.hero-stage {
    position: relative;
    min-height: 860px;
    margin-top: 6px;
    padding-top: 52px;
    border-radius: 42px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(246, 249, 201, 0.55), rgba(246, 249, 201, 0.9));
}

.hero-stage-blob {
    position: absolute;
    top: -84px;
    left: 50%;
    width: 960px;
    height: 700px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: #b57be7;
}

.hero-stage-doodle {
    position: absolute;
    width: 88px;
    height: 88px;
    opacity: 0.45;
}

.hero-stage-doodle::before,
.hero-stage-doodle::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 4px solid rgba(239, 98, 68, 0.7);
    border-radius: 24px;
}

.hero-stage-doodle::after {
    transform: rotate(45deg) scale(0.72);
    border-color: rgba(21, 108, 168, 0.3);
}

.hero-stage-doodle-left {
    top: 92px;
    left: 42px;
    transform: rotate(16deg);
}

.hero-stage-doodle-right {
    top: 38px;
    right: 34px;
    transform: rotate(-18deg);
}

.hero-info-card {
    position: absolute;
    top: 194px;
    left: 42px;
    z-index: 3;
    width: min(290px, calc(100% - 84px));
    padding: 26px;
    border-radius: 28px;
    background: #ff6338;
    color: var(--white);
    box-shadow: 0 24px 40px rgba(239, 98, 68, 0.22);
}

.hero-info-label {
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-info-card p {
    max-width: none;
    line-height: 1.5;
}

.hero-speech-bubble {
    position: absolute;
    top: 342px;
    right: 268px;
    z-index: 3;
    padding: 24px 22px 32px;
    border-radius: 32px 32px 32px 10px;
    background: #7b63ec;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2vw, 2.3rem);
    line-height: 0.88;
}

.hero-speech-bubble::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 36px;
    height: 36px;
    background: #7b63ec;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hero-brand-mark {
    position: absolute;
    top: 500px;
    right: 72px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-radius: 24px;
    background: rgba(123, 99, 236, 0.88);
    box-shadow: 0 20px 38px rgba(82, 57, 164, 0.2);
}

.hero-brand-mark img {
    width: 52px;
    height: 52px;
}

.hero-brand-mark strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1;
}

.hero-brand-mark span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-centerpiece {
    position: absolute;
    inset: 156px 0 160px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-center-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: min(540px, calc(100% - 120px));
    aspect-ratio: 1 / 1.08;
    transform: translateX(-50%);
    border-radius: 48% 48% 18% 18%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.42));
    border: 4px solid rgba(123, 99, 236, 0.42);
}

.hero-center-card {
    position: relative;
    z-index: 2;
    width: min(560px, calc(100% - 44px));
    padding: 58px 42px 136px;
    border-radius: 260px 260px 40px 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.86));
    text-align: center;
    box-shadow: 0 26px 60px rgba(82, 57, 164, 0.18);
}

.hero-title-compact {
    font-size: clamp(2.8rem, 4.4vw, 4.6rem);
    position: relative;
    z-index: 2;
}

.hero-title-compact .line {
    transform: none;
}

.hero-center-card .hero-subtitle {
    max-width: 36ch;
    margin: 0 auto;
}

.hero-center-card .hero-actions {
    justify-content: center;
    margin-top: 28px;
}

.hero-books {
    position: absolute;
    left: 50%;
    bottom: 4px;
    z-index: 3;
    width: 280px;
    height: 168px;
    transform: translateX(-50%);
}

.hero-book {
    position: absolute;
    bottom: 0;
    width: 158px;
    height: 110px;
    border-radius: 14px 14px 6px 6px;
    box-shadow: 0 18px 28px rgba(14, 40, 92, 0.15);
}

.hero-book-purple {
    left: 84px;
    bottom: 2px;
    background: linear-gradient(135deg, #9268eb, #b48af4);
    transform: rotate(5deg);
}

.hero-book-orange {
    left: 52px;
    bottom: 18px;
    background: linear-gradient(135deg, #ff6442, #ff9f59);
    transform: rotate(-3deg);
}

.hero-book-lime {
    left: 122px;
    bottom: 32px;
    background: linear-gradient(135deg, #d8f0a7, #edf7c9);
    transform: rotate(10deg);
}

.typing-box-stage {
    position: absolute;
    right: 112px;
    bottom: 212px;
    z-index: 3;
    width: 260px;
    margin-left: 0;
}

.hero-tags {
    position: absolute;
    inset: auto 0 30px;
    z-index: 1;
    height: 220px;
    pointer-events: none;
}

.hero-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 56px;
    padding: 0 24px;
    border: 3px solid #8f71ef;
    border-radius: 999px;
    color: #7b63ec;
    background: rgba(246, 249, 201, 0.86);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    box-shadow: 0 12px 24px rgba(123, 99, 236, 0.08);
}

.hero-tag-solid {
    background: #7b63ec;
    color: var(--white);
}

.hero-tag:nth-child(1) {
    left: 22px;
    bottom: 44px;
}

.hero-tag:nth-child(2) {
    left: 88px;
    bottom: 138px;
    transform: rotate(-28deg);
}

.hero-tag:nth-child(3) {
    left: 198px;
    bottom: 102px;
    transform: rotate(24deg);
}

.hero-tag:nth-child(4) {
    left: 230px;
    bottom: 20px;
    transform: rotate(11deg);
}

.hero-tag:nth-child(5) {
    left: 516px;
    bottom: 142px;
    transform: rotate(-28deg);
}

.hero-tag:nth-child(6) {
    right: 254px;
    bottom: 84px;
    transform: rotate(22deg);
}

.hero-tag:nth-child(7) {
    right: 130px;
    bottom: 126px;
    transform: rotate(-18deg);
}

.hero-tag:nth-child(8) {
    right: 24px;
    bottom: 50px;
    transform: rotate(-35deg);
}

.hero-proof {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.hero-proof-item {
    display: flex;
    gap: 12px;
    align-items: baseline;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(14, 40, 92, 0.06);
}

.hero-proof-item strong {
    min-width: 90px;
    font-size: 0.95rem;
    color: var(--blue);
}

.hero-proof-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero-visual-card,
.typing-box,
.visi-showcase,
.cta-panel,
.stats-card,
.history-card,
.value-card,
.team-card,
.approach-card,
.program-card,
.misi-card,
.pillar-card,
.visi-highlight-card {
    border: 1px solid rgba(14, 40, 92, 0.08);
    background: var(--surface-strong);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.hero-visual-card {
    padding: 26px;
    border-radius: 34px;
}

.hero-visual-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.mini-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(14, 40, 92, 0.08);
    color: var(--dark-blue);
    font-size: 0.83rem;
    font-weight: 800;
}

.mini-pill-outline {
    background: rgba(255, 240, 223, 0.95);
    color: var(--red-orange);
}

.hero-lesson-card {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, var(--white), #fff8ef);
}

.lesson-label {
    margin-bottom: 8px;
    color: var(--red-orange);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-lesson-card h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    margin-bottom: 16px;
}

.lesson-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.lesson-list li,
.pillar-card li {
    position: relative;
    padding-left: 18px;
    color: var(--text-secondary);
}

.lesson-list li::before,
.pillar-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.lesson-list li::before {
    background: var(--orange);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.hero-stat-card {
    padding: 16px;
    border-radius: 22px;
    background: rgba(233, 246, 255, 0.78);
}

.hero-stat-value {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-blue);
}

.hero-stat-card p {
    max-width: none;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.typing-box {
    position: relative;
    margin-left: auto;
    width: min(100%, 340px);
    padding: 18px;
    border-radius: 26px;
}

.typing-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.typing-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.typing-dots span:nth-child(1) {
    background: var(--red-orange);
}

.typing-dots span:nth-child(2) {
    background: var(--orange);
}

.typing-dots span:nth-child(3) {
    background: var(--blue);
}

.typing-area {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(14, 40, 92, 0.05);
}

.typing-area p {
    font-weight: 700;
    color: var(--dark-blue);
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    vertical-align: middle;
    background: var(--dark-blue);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.section,
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-tight {
    padding-top: 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.76));
}

.section-title {
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    text-align: center;
}

.section-title-left,
.section-subtitle-left {
    text-align: left;
    margin-inline: 0;
}

.section-subtitle {
    margin: 0 auto 42px;
    font-size: clamp(1rem, 1.8vw, 1.13rem);
    color: var(--text-secondary);
    text-align: center;
}

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

.homepage-hero {
    padding-top: clamp(116px, 14vw, 156px);
    padding-bottom: clamp(78px, 10vw, 120px);
}

.homepage-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 34px;
    padding: clamp(24px, 4vw, 34px);
    border-radius: 42px;
    background:
        radial-gradient(circle at top right, rgba(183, 122, 241, 0.24), transparent 26%),
        radial-gradient(circle at bottom left, rgba(247, 178, 68, 0.18), transparent 26%),
        linear-gradient(145deg, #091734 0%, #133e77 48%, #ef6244 100%);
    box-shadow: 0 36px 90px rgba(14, 40, 92, 0.18);
    overflow: hidden;
}

.homepage-hero-shell::before,
.homepage-hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.75;
}

.homepage-hero-shell::before {
    inset: -70px auto auto -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 214, 106, 0.28);
}

.homepage-hero-shell::after {
    inset: auto -60px 50px auto;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.16);
}

.homepage-hero-copy,
.homepage-hero-stage {
    position: relative;
    z-index: 1;
}

.homepage-hero-copy {
    color: var(--white);
    padding: clamp(10px, 1vw, 18px);
}

.homepage-hero-copy .hero-eyebrow {
    color: #fff7d6;
    background: rgba(255, 255, 255, 0.12);
}

.homepage-hero-title,
.homepage-hero-title .accent-red {
    color: var(--white);
}

.homepage-hero-subtitle {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-proof-band {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof-band span,
.hero-signal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.homepage-hero-stage {
    min-height: 620px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
        linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(9, 23, 52, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: orbit-float 12s ease-in-out infinite;
}

.hero-orbit-one {
    top: 9%;
    left: 10%;
    width: 240px;
    height: 240px;
}

.hero-orbit-two {
    right: 8%;
    bottom: 12%;
    width: 320px;
    height: 320px;
    animation-delay: -5s;
}

.hero-premium-card {
    position: absolute;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 48px rgba(9, 23, 52, 0.18);
}

.hero-card-label,
.proof-card span,
.experience-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff2cb;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-premium-card h2 {
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 10px;
}

.hero-premium-card p {
    max-width: none;
    color: rgba(255, 255, 255, 0.84);
}

.hero-premium-card-main {
    inset: 54px auto auto 48px;
    width: min(360px, calc(100% - 96px));
}

.hero-premium-card-note {
    inset: auto 34px 156px auto;
    width: min(270px, calc(100% - 68px));
    animation: card-drift 10s ease-in-out infinite;
}

.hero-premium-card-quote {
    inset: auto auto 40px 58px;
    width: min(310px, calc(100% - 116px));
    animation: card-drift 11.5s ease-in-out infinite reverse;
}

.hero-visual-stack {
    position: absolute;
    inset: 136px 78px 76px auto;
    width: min(330px, calc(100% - 120px));
}

.hero-visual {
    position: absolute;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 60px rgba(9, 23, 52, 0.2);
}

.hero-visual-a {
    inset: 40px 0 0 auto;
    width: 250px;
    height: 320px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, #6e57e0, #b884f8);
    transform: rotate(10deg);
}

.hero-visual-b {
    inset: 0 auto auto 8px;
    width: 170px;
    height: 210px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, #f7b244, #ffd66a);
    transform: rotate(-12deg);
}

.hero-visual-c {
    inset: auto 42px 12px auto;
    width: 210px;
    height: 150px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
        linear-gradient(135deg, #156ca8, #76c6ff);
    transform: rotate(-8deg);
}

.hero-signal {
    position: absolute;
    animation: card-drift 9s ease-in-out infinite;
}

.hero-signal-left {
    left: 38px;
    top: 46%;
}

.hero-signal-right {
    right: 72px;
    top: 72px;
    animation-delay: -4s;
}

.proof-section {
    margin-top: -34px;
}

.proof-panel {
    position: relative;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(14, 40, 92, 0.08);
    box-shadow: 0 26px 60px rgba(14, 40, 92, 0.08);
    backdrop-filter: blur(14px);
}

.proof-grid {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.proof-card {
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, var(--white), rgba(233, 246, 255, 0.72));
    border: 1px solid rgba(14, 40, 92, 0.06);
    box-shadow: var(--shadow-sm);
}

.proof-card h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.proof-card p {
    color: var(--text-secondary);
}

.homepage-pillars .pillar-card,
.homepage-program-card,
.experience-panel {
    background: rgba(255, 255, 255, 0.86);
}

.experience-layout {
    display: grid;
    gap: 26px;
}

.experience-panels {
    display: grid;
    gap: 18px;
}

.experience-panel {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(14, 40, 92, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.experience-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.experience-panel-primary {
    background: linear-gradient(180deg, rgba(21, 108, 168, 0.1), rgba(255, 255, 255, 0.92));
}

.experience-panel-accent {
    background: linear-gradient(180deg, rgba(239, 98, 68, 0.12), rgba(255, 255, 255, 0.92));
}

.experience-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.experience-panel p {
    color: var(--text-secondary);
}

.homepage-program-grid {
    align-items: stretch;
}

.homepage-program-card {
    position: relative;
    overflow: hidden;
}

.homepage-program-card::after {
    content: "";
    position: absolute;
    inset: auto -18px -24px auto;
    width: 128px;
    height: 128px;
    border-radius: 28px;
    opacity: 0.08;
    transform: rotate(20deg);
}

.homepage-program-card:nth-child(1)::after {
    background: var(--blue);
}

.homepage-program-card:nth-child(2)::after {
    background: var(--orange);
}

.homepage-program-card:nth-child(3)::after {
    background: var(--red-orange);
}

.program-points {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.program-points li {
    position: relative;
    padding-left: 18px;
    color: var(--text-secondary);
}

.program-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--orange);
}

@keyframes orbit-float {
    50% {
        transform: translate3d(12px, -18px, 0);
    }
}

@keyframes card-drift {
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

.split-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.visi-showcase {
    display: grid;
    gap: 24px;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 40px;
}

.visi-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.visi-highlights {
    display: grid;
    gap: 16px;
}

.visi-highlight-card {
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, var(--white), rgba(233, 246, 255, 0.72));
}

.highlight-number {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--blue);
}

.visi-highlight-card h3,
.misi-card h3,
.program-card h3,
.approach-card h3,
.history-card h2,
.value-card h3,
.team-card h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.visi-highlight-card p,
.misi-card p,
.approach-card p,
.history-card p,
.value-card p,
.team-card p,
.program-card p,
.footer-section ul li a,
.footer-contact-item a {
    color: var(--text-secondary);
}

.misi-grid,
.pillars-grid,
.program-grid,
.values-grid,
.team-grid,
.stats-grid,
.history-grid {
    display: grid;
    gap: 22px;
}

.misi-grid,
.program-grid,
.values-grid,
.team-grid,
.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.misi-card,
.pillar-card,
.approach-card,
.program-card,
.history-card,
.value-card,
.team-card {
    border-radius: 30px;
    padding: 28px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}

.misi-card:hover,
.pillar-card:hover,
.approach-card:hover,
.program-card:hover,
.history-card:hover,
.value-card:hover,
.team-card:hover,
.visi-highlight-card:hover,
.cta-step-card:hover,
.stat-item:hover {
    transform: translateY(-4px);
}

.misi-icon,
.program-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 18px;
    font-weight: 800;
}

.misi-card:nth-child(1) .misi-icon,
.program-card:nth-child(1) .program-icon {
    color: var(--blue);
    background: rgba(21, 108, 168, 0.12);
}

.misi-card:nth-child(2) .misi-icon,
.program-card:nth-child(2) .program-icon {
    color: var(--dark-blue);
    background: rgba(14, 40, 92, 0.09);
}

.misi-card:nth-child(3) .misi-icon,
.program-card:nth-child(3) .program-icon {
    color: #bc6f00;
    background: rgba(247, 178, 68, 0.18);
}

.misi-card:nth-child(4) .misi-icon {
    color: var(--red-orange);
    background: rgba(239, 98, 68, 0.12);
}

.badge,
.program-tag {
    display: inline-flex;
    margin-top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
}

.badge {
    background: rgba(21, 108, 168, 0.08);
    color: var(--blue);
}

.program-tag {
    margin: 0 0 12px;
    background: rgba(255, 240, 223, 1);
    color: var(--red-orange);
}

.pillar-card {
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: "";
    position: absolute;
    inset: auto -24px -42px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.15;
}

.pillar-rula::after {
    background: var(--blue);
}

.pillar-uja::after {
    background: var(--dark-blue);
}

.pillar-pika::after {
    background: var(--orange);
}

.pillar-aca::after {
    background: var(--red-orange);
}

.pillar-number {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pillar-rula .pillar-number,
.pillar-rula .pillar-tagline {
    color: var(--blue);
}

.pillar-uja .pillar-number,
.pillar-uja .pillar-tagline {
    color: var(--dark-blue);
}

.pillar-pika .pillar-number,
.pillar-pika .pillar-tagline {
    color: #bc6f00;
}

.pillar-aca .pillar-number,
.pillar-aca .pillar-tagline {
    color: var(--red-orange);
}

.pillar-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-rula .pillar-icon {
    background: rgba(21, 108, 168, 0.08);
}

.pillar-uja .pillar-icon {
    background: rgba(14, 40, 92, 0.08);
}

.pillar-pika .pillar-icon {
    background: rgba(247, 178, 68, 0.14);
}

.pillar-aca .pillar-icon {
    background: rgba(239, 98, 68, 0.08);
}

.pillar-card h3 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.pillar-tagline {
    margin-bottom: 14px;
    font-weight: 800;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pillar-rula li::before {
    background: var(--blue);
}

.pillar-uja li::before {
    background: var(--dark-blue);
}

.pillar-pika li::before {
    background: var(--orange);
}

.pillar-aca li::before {
    background: var(--red-orange);
}

.approach-grid {
    display: grid;
    gap: 22px;
}

.approach-card-primary {
    background: linear-gradient(180deg, rgba(233, 246, 255, 0.72), rgba(255, 255, 255, 0.95));
}

.approach-process {
    background: linear-gradient(180deg, rgba(255, 240, 223, 0.82), rgba(255, 255, 255, 0.95));
}

.approach-detail {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(14, 40, 92, 0.08);
}

.approach-detail h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.approach-steps {
    display: grid;
    gap: 14px;
    padding-left: 1.2rem;
    color: var(--text-secondary);
}

.program-card {
    text-align: left;
}

.cta-section-home {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 22%),
        linear-gradient(135deg, #0f2f67 0%, #145b9d 58%, #ef6244 100%);
    color: var(--white);
}

.cta-panel {
    display: grid;
    gap: 22px;
    padding: clamp(28px, 5vw, 42px);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-copy h2,
.cta-section h2 {
    color: var(--white);
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    margin-bottom: 16px;
}

.cta-copy p,
.cta-section p,
.cta-contact,
.cta-contact a {
    color: rgba(255, 255, 255, 0.9);
}

.cta-copy .btn-white {
    margin-top: 10px;
}

.cta-contact {
    margin-top: 18px;
    font-weight: 600;
}

.cta-steps {
    display: grid;
    gap: 16px;
}

.cta-step-card {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.cta-step-card span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.cta-step-card h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.45rem;
}

.cta-step-card p {
    max-width: none;
    color: rgba(255, 255, 255, 0.84);
}

.site-footer {
    padding: clamp(48px, 8vw, 72px) 0 0;
    background: #0f234d;
    color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
    display: grid;
    gap: 34px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-section h4 {
    margin-bottom: 14px;
    color: var(--yellow);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding-inline: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 160;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
}

#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 60%, var(--red-orange) 100%);
    transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.loading-image {
    width: 150px;
    height: 150px;
    animation: loading-bounce 1.2s ease-in-out infinite;
}

@keyframes loading-bounce {
    50% {
        transform: translateY(-8px) scale(1.03);
    }
}

.loading-logo-letters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.loading-logo-letters span {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--white);
    animation: letter-appear 0.5s var(--ease-out) forwards;
    opacity: 0;
    transform: translateY(12px);
}

.loading-logo-letters span:nth-child(1) {
    animation-delay: 0.1s;
}

.loading-logo-letters span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-logo-letters span:nth-child(3) {
    animation-delay: 0.3s;
}

.loading-logo-letters span:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes letter-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--yellow);
    animation: spin 0.8s linear infinite;
}

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

.loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.loading main,
body.loading .site-header,
body.loading .whatsapp-float {
    opacity: 0;
    visibility: hidden;
}

body.loaded main,
body.loaded .site-header,
body.loaded .whatsapp-float {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.stagger>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible>*:nth-child(1) {
    transition-delay: 0.04s;
}

.stagger.visible>*:nth-child(2) {
    transition-delay: 0.08s;
}

.stagger.visible>*:nth-child(3) {
    transition-delay: 0.12s;
}

.stagger.visible>*:nth-child(4) {
    transition-delay: 0.16s;
}

.hero-title .line {
    opacity: 0;
    transform: translateY(26px);
    animation: hero-reveal 0.72s var(--ease-out) forwards;
}

.hero-title .line:nth-child(1) {
    animation-delay: 0.16s;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.28s;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes hero-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.f-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(10px);
    animation: float-gentle 14s ease-in-out infinite;
}

.f-shape:nth-child(1) {
    top: 3%;
    right: -4%;
    width: 250px;
    height: 250px;
    background: rgba(21, 108, 168, 0.12);
}

.f-shape:nth-child(2) {
    bottom: 6%;
    left: -3%;
    width: 220px;
    height: 220px;
    background: rgba(247, 178, 68, 0.16);
    animation-delay: -3s;
}

.f-shape:nth-child(3) {
    top: 42%;
    right: 10%;
    width: 140px;
    height: 140px;
    background: rgba(239, 98, 68, 0.12);
    animation-delay: -7s;
}

@keyframes float-gentle {
    50% {
        transform: translate(10px, -16px);
    }
}

body.scrolling .f-shape {
    animation-play-state: paused;
}

.about-hero {
    background: transparent;
    padding: clamp(120px, 18vw, 180px) 0 clamp(60px, 7vw, 90px);
}

.about-hero-subtitle {
    max-width: 580px;
}

.rupa-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.rupa-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rupa-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin-bottom: 18px;
    border-radius: 50%;
    font-size: 2rem;
}

.team-card:nth-child(1) .team-avatar {
    background: rgba(21, 108, 168, 0.12);
}

.team-card:nth-child(2) .team-avatar {
    background: rgba(239, 98, 68, 0.12);
}

.team-card:nth-child(3) .team-avatar {
    background: rgba(247, 178, 68, 0.18);
}

.stats-card {
    padding: clamp(26px, 4vw, 38px);
    border-radius: 34px;
}

.stat-item {
    padding: 24px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.25s var(--ease-out);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1;
}

.stat-item:nth-child(1) .stat-number {
    color: var(--blue);
}

.stat-item:nth-child(2) .stat-number {
    color: var(--red-orange);
}

.stat-item:nth-child(3) .stat-number {
    color: #bc6f00;
}

.stat-label {
    margin-top: 8px;
    color: var(--text-secondary);
    font-weight: 700;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

@media (min-width: 768px) {

    .history-grid,
    .cta-panel,
    .visi-showcase,
    .approach-grid,
    .proof-grid,
    .experience-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 1024px) {
    .desktop-nav {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .homepage-hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
        align-items: center;
    }

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

    .hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
        gap: 42px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 118px;
    }

    .header-inner {
        width: calc(100% - 24px);
        padding: 8px 12px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-copy {
        gap: 2px;
    }

    .logo-managed-by {
        font-size: 0.58rem;
        letter-spacing: 0.03em;
    }

    .hero-title,
    .about-hero-title {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
    }

    .homepage-hero-shell {
        padding: 20px;
        border-radius: 30px;
    }

    .homepage-hero-stage {
        min-height: 560px;
    }

    .hero-premium-card-main {
        inset: 24px 24px auto 24px;
        width: auto;
    }

    .hero-premium-card-note {
        right: 18px;
        bottom: 142px;
        width: min(228px, calc(100% - 36px));
    }

    .hero-premium-card-quote {
        left: 20px;
        right: 20px;
        bottom: 24px;
        width: auto;
    }

    .hero-visual-stack {
        inset: 170px 24px 124px auto;
        width: 250px;
    }

    .hero-visual-a {
        width: 194px;
        height: 254px;
    }

    .hero-visual-b {
        width: 144px;
        height: 178px;
    }

    .hero-visual-c {
        width: 168px;
        height: 118px;
    }

    .hero-signal-left {
        top: 128px;
        left: 22px;
    }

    .hero-signal-right {
        right: 26px;
        top: 112px;
    }

    .proof-section {
        margin-top: -18px;
    }

    .hero-stage {
        min-height: 1040px;
        padding-top: 38px;
    }

    .hero-stage-blob {
        top: -42px;
        width: 720px;
        height: 420px;
    }

    .hero-info-card {
        top: 142px;
        left: 18px;
        width: calc(100% - 36px);
    }

    .hero-speech-bubble {
        top: 344px;
        right: 18px;
        font-size: 1.45rem;
    }

    .hero-brand-mark {
        top: 512px;
        right: 18px;
        left: auto;
        padding: 14px 16px;
    }

    .hero-brand-mark strong {
        font-size: 1.05rem;
    }

    .hero-centerpiece {
        inset: 220px 0 220px;
    }

    .hero-center-ring {
        width: calc(100% - 42px);
    }

    .hero-center-card {
        width: calc(100% - 24px);
        padding: 44px 20px 120px;
        border-radius: 220px 220px 30px 30px;
    }

    .hero-center-card .hero-actions {
        gap: 10px;
    }

    .hero-books {
        width: 220px;
        height: 146px;
    }

    .hero-book {
        width: 128px;
        height: 94px;
    }

    .typing-box-stage {
        left: 18px;
        right: auto;
        bottom: 232px;
        width: min(220px, calc(100% - 36px));
    }

    .hero-tags {
        height: 248px;
        bottom: 8px;
    }

    .hero-tag {
        min-width: 138px;
        height: 46px;
        padding-inline: 16px;
        font-size: 0.9rem;
    }

    .hero-tag:nth-child(1) {
        left: 4px;
        bottom: 34px;
    }

    .hero-tag:nth-child(2) {
        left: 20px;
        bottom: 160px;
    }

    .hero-tag:nth-child(3) {
        left: 96px;
        bottom: 114px;
    }

    .hero-tag:nth-child(4) {
        left: 110px;
        bottom: 18px;
    }

    .hero-tag:nth-child(5) {
        left: auto;
        right: 82px;
        bottom: 152px;
    }

    .hero-tag:nth-child(6) {
        right: 46px;
        bottom: 98px;
    }

    .hero-tag:nth-child(7) {
        right: 0;
        bottom: 166px;
    }

    .hero-tag:nth-child(8) {
        right: -6px;
        bottom: 38px;
    }

    .cta-copy h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }

}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .stagger>*,
    .hero-title .line {
        opacity: 1;
        transform: none;
    }
}
