@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Instrument+Serif:ital@0;1&family=Figtree:wght@300;400;500;600;700&display=swap");

body:has(.demo-page) {
    background: var(--ink);
}

.main-content:has(.demo-page) {
    padding: 0;
    background: var(--ink);
}

.main-content > .container-fluid:has(.demo-page) {
    padding-left: 0;
    padding-right: 0;
}

.demo-page {
    --ink: #0a0e14;
    --ink-2: #141a24;
    --paper: #f5f2eb;
    --paper-2: #ece9e0;
    --lime: #b8f53a;
    --lime-dark: #8cc028;
    --teal: #00d4a0;
    --white: #ffffff;
    --border-light: rgba(245, 242, 235, 0.08);
    --ff-display: "Bebas Neue", sans-serif;
    --ff-serif: "Instrument Serif", serif;
    --ff-body: "Figtree", system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-bottom: 64px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--ff-body);
    line-height: 1.6;
}

.demo-page * {
    box-sizing: border-box;
}

.demo-page a:focus-visible,
.demo-page button:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
}

.demo-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.35;
}

.demo-page > :not(.demo-particles):not(.demo-ambient) {
    position: relative;
    z-index: 1;
}

.demo-shell {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.demo-ambient {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.8;
}

.demo-ambient--one {
    width: 600px;
    height: 600px;
    top: -120px;
    right: -120px;
    background: rgba(0, 212, 160, 0.12);
    animation: demo-orb-one 12s ease-in-out infinite;
}

.demo-ambient--two {
    width: 420px;
    height: 420px;
    bottom: 18%;
    left: -140px;
    background: rgba(184, 245, 58, 0.09);
    animation: demo-orb-two 15s ease-in-out infinite;
}

.demo-ambient--three {
    width: 300px;
    height: 300px;
    top: 32%;
    left: 24%;
    background: rgba(255, 85, 51, 0.07);
    animation: demo-orb-three 10s ease-in-out infinite;
}

.demo-hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 64px 0 92px;
    text-align: center;
}

.demo-eyebrow,
.demo-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.demo-eyebrow {
    color: var(--teal);
    margin-bottom: 28px;
}

.demo-eyebrow__line,
.demo-tag::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.demo-hero__title {
    margin: 0;
    font-family: var(--ff-display);
    font-size: clamp(72px, 11vw, 160px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
}

.demo-hero__title span,
.demo-hero__title em {
    display: block;
}

.demo-hero__title em {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--lime);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.72em;
}

.reveal-line {
    opacity: 1;
    transform: none;
}

.demo-hero__sub {
    max-width: 640px;
    margin: 30px auto 0;
    font-size: clamp(15px, 1.8vw, 19px);
    line-height: 1.8;
    color: rgba(245, 242, 235, 0.66);
    font-weight: 300;
}

.demo-hero__sub strong {
    color: rgba(245, 242, 235, 0.96);
    font-weight: 600;
}

.demo-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 44px;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring), background 0.3s, color 0.3s, border-color 0.3s;
}

.demo-btn--primary {
    background: var(--lime);
    color: var(--ink);
}

.demo-btn--primary:hover,
.demo-btn--primary:focus-visible {
    background: var(--lime-dark);
    color: var(--ink);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(184, 245, 58, 0.35);
}

.demo-btn--outline {
    border: 1px solid rgba(245, 242, 235, 0.18);
    background: transparent;
    color: rgba(245, 242, 235, 0.7);
}

.demo-btn--outline:hover,
.demo-btn--outline:focus-visible {
    border-color: rgba(245, 242, 235, 0.52);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.demo-btn--ghost-danger {
    border: 1px solid rgba(255, 85, 51, 0.28);
    background: rgba(255, 85, 51, 0.08);
    color: #ff8b76;
}

.demo-btn--ghost-danger:hover,
.demo-btn--ghost-danger:focus-visible {
    border-color: rgba(255, 85, 51, 0.5);
    background: rgba(255, 85, 51, 0.14);
    color: #ffb2a5;
}

.demo-hero__metrics {
    display: flex;
    width: fit-content;
    margin: 76px auto 0;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
}

.demo-hero__metrics article {
    min-width: 160px;
    padding: 22px 34px;
    border-right: 1px solid var(--border-light);
    transition: background 0.3s, border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.demo-hero__metrics article:last-child {
    border-right: 0;
}

.demo-hero__metrics article:hover {
    background: rgba(255, 255, 255, 0.04);
}

.demo-hero__metrics article.is-visible {
    transform: translateY(0);
    border-color: rgba(184, 245, 58, 0.16);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.demo-hero__metrics strong,
.demo-hero__metrics span {
    display: block;
}

.demo-hero__metrics strong {
    font-family: var(--ff-display);
    font-size: 42px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--lime);
}

.demo-hero__metrics span {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.52);
}

.demo-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--lime);
    padding: 18px 0;
}

.demo-marquee__track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: demo-marquee 22s linear infinite;
}

.demo-marquee__track span {
    position: relative;
    padding: 0 32px;
    font-family: var(--ff-display);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}

.demo-marquee__track span::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(10, 14, 20, 0.34);
    transform: translateY(-50%);
}

.demo-section {
    position: relative;
    padding: 120px 0;
}

.demo-section--roles,
.demo-section--flow,
.demo-cta {
    background: var(--ink-2);
}

.demo-section--compare,
.demo-section--path {
    background: var(--paper);
    color: var(--ink);
}

.demo-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.demo-tag {
    color: var(--teal);
    margin-bottom: 20px;
}

.demo-title {
    margin: 0;
    font-family: var(--ff-display);
    font-size: clamp(42px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.demo-title em {
    font-family: var(--ff-serif);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    color: var(--teal);
    font-size: 0.84em;
}

.demo-sub {
    max-width: 500px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.64);
}

.demo-section--compare .demo-tag,
.demo-section--path .demo-tag {
    color: rgba(10, 14, 20, 0.5);
}

.demo-section--compare .demo-title,
.demo-section--compare .demo-sub,
.demo-section--path .demo-title,
.demo-section--path .demo-sub {
    color: var(--ink);
}

.demo-section--compare .demo-sub,
.demo-section--path .demo-sub {
    color: rgba(10, 14, 20, 0.62);
}

.demo-section--compare .demo-title em,
.demo-section--path .demo-title em {
    color: var(--ink);
}

.demo-roles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(245, 242, 235, 0.06);
}

.demo-role-card {
    position: relative;
    display: block;
    padding: 48px;
    background: var(--ink);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: background 0.4s;
}

.demo-role-card:focus-visible {
    outline-offset: -6px;
}

.demo-role-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lime), var(--teal));
    opacity: 0;
    transition: opacity 0.4s;
}

.demo-role-card:hover::before {
    opacity: 0.06;
}

.demo-role-card__num {
    position: absolute;
    top: -16px;
    right: 0;
    font-family: var(--ff-display);
    font-size: 72px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgba(184, 245, 58, 0.12);
    text-shadow: 0 0 24px rgba(184, 245, 58, 0.05);
    transition: color 0.4s, text-shadow 0.4s;
}

.demo-role-card:hover .demo-role-card__num {
    color: rgba(184, 245, 58, 0.2);
    text-shadow: 0 0 34px rgba(184, 245, 58, 0.12);
}

.demo-role-card > * {
    position: relative;
    z-index: 1;
}

.demo-role-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 14px;
    font-size: 26px;
    transition: transform 0.4s var(--ease-spring);
}

.demo-role-card:hover .demo-role-card__icon {
    transform: scale(1.1) rotate(-4deg);
}

.demo-role-card__icon--guru {
    background: rgba(0, 212, 160, 0.12);
}

.demo-role-card__icon--penyelia {
    background: rgba(184, 245, 58, 0.12);
}

.demo-role-card__icon--admin {
    background: rgba(255, 85, 51, 0.12);
}

.demo-role-card__icon--ppm {
    background: rgba(240, 192, 64, 0.12);
}

.demo-role-card h3 {
    margin: 0 0 12px;
    font-family: var(--ff-display);
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.demo-role-card__flow {
    margin: 0 0 24px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.46);
}

.demo-role-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.demo-role-card li {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(245, 242, 235, 0.06);
    font-size: 14px;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.76);
}

.demo-role-card li:last-child {
    border-bottom: 0;
}

.demo-role-card li i {
    color: var(--teal);
    font-size: 12px;
    margin-top: 5px;
}

.demo-role-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lime);
    transition: gap 0.3s var(--ease-spring);
}

.demo-role-card:hover .demo-role-card__action {
    gap: 14px;
}

.demo-role-card__pw {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(245, 242, 235, 0.42);
}

.demo-role-card__pw code {
    border: 1px solid rgba(245, 242, 235, 0.1);
    border-radius: 5px;
    background: rgba(245, 242, 235, 0.06);
    padding: 2px 8px;
    color: rgba(245, 242, 235, 0.74);
    font-size: 11px;
}

.demo-bento {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(245, 242, 235, 0.05);
}

.demo-bento__item {
    position: relative;
    padding: 40px 36px;
    background: var(--ink-2);
    transition: background 0.35s;
}

.demo-bento__item:hover {
    background: #1a2030;
}

.demo-bento__item--wide {
    grid-column: span 3;
}

.demo-bento__item:not(.demo-bento__item--wide) {
    grid-column: span 2;
}

.demo-bento__index {
    display: block;
    margin-bottom: 18px;
    font-family: var(--ff-display);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
}

.demo-bento__title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.demo-bento__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 242, 235, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--teal);
    font-size: 17px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.demo-bento__item h3 {
    margin: 0;
    font-family: var(--ff-display);
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
}

.demo-bento__item p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.66);
}

.demo-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.demo-compare__card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 48px;
}

.demo-compare__card--before {
    border: 1px solid rgba(10, 14, 20, 0.12);
    background: linear-gradient(180deg, #efebe2 0%, #e8e2d7 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.demo-compare__card--after {
    border: 1px solid transparent;
    background: var(--ink);
}

.demo-compare__card--after::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 90% 10%, rgba(0, 212, 160, 0.15), transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 90%, rgba(184, 245, 58, 0.07), transparent 60%);
    pointer-events: none;
}

.demo-compare__label {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 24px;
    border-radius: 999px;
    padding: 5px 14px;
    font-family: var(--ff-display);
    font-size: 11px;
    letter-spacing: 0.18em;
}

.demo-compare__card--before .demo-compare__label {
    background: rgba(10, 14, 20, 0.09);
    color: rgba(10, 14, 20, 0.56);
}

.demo-compare__card--after .demo-compare__label {
    background: rgba(0, 212, 160, 0.12);
    color: var(--teal);
}

.demo-compare__card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    font-family: var(--ff-display);
    font-size: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.demo-compare__card--before h3 {
    color: var(--ink);
}

.demo-compare__card--after h3 {
    color: var(--white);
}

.demo-compare__card ul {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.demo-compare__card li {
    display: flex;
    align-items: start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid;
    font-size: 14px;
    font-weight: 300;
}

.demo-compare__card li:last-child {
    border-bottom: 0;
}

.demo-compare__card--before li {
    border-bottom-color: rgba(10, 14, 20, 0.1);
    color: rgba(10, 14, 20, 0.82);
}

.demo-compare__card--after li {
    border-bottom-color: rgba(245, 242, 235, 0.07);
    color: rgba(245, 242, 235, 0.74);
}

.demo-compare__card li span {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

.demo-compare__card--before li span {
    background: rgba(10, 14, 20, 0.1);
    color: rgba(10, 14, 20, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.demo-compare__card--after li span {
    background: rgba(0, 212, 160, 0.15);
    color: var(--teal);
}

.demo-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    margin-top: clamp(56px, 7vw, 80px);
}

.demo-flow::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 160, 0.3), rgba(184, 245, 58, 0.6), rgba(0, 212, 160, 0.3), transparent);
    z-index: 0;
}

.demo-flow article {
    position: relative;
    z-index: 1;
    padding: 0 8px;
    text-align: center;
}

.demo-flow__node {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(245, 242, 235, 0.12);
    border-radius: 50%;
    background: var(--ink);
    color: rgba(245, 242, 235, 0.4);
    font-family: var(--ff-display);
    font-size: 22px;
    letter-spacing: 0.04em;
    transition: transform 0.4s var(--ease-spring), background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.demo-flow article:hover .demo-flow__node {
    transform: scale(1.18);
    border-color: var(--lime);
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 0 0 8px rgba(184, 245, 58, 0.12), 0 0 40px rgba(184, 245, 58, 0.25);
}

.demo-flow h3 {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(245, 242, 235, 0.84);
}

.demo-flow p {
    margin: 0;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(245, 242, 235, 0.46);
}

.demo-flow article:hover h3 {
    color: var(--lime);
}

.demo-flow article.is-visible .demo-flow__node {
    transform: scale(1.18);
    border-color: var(--lime);
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 0 0 8px rgba(184, 245, 58, 0.12), 0 0 40px rgba(184, 245, 58, 0.25);
}

.demo-flow article.is-visible h3 {
    color: var(--lime);
}

.demo-why {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(245, 242, 235, 0.05);
}

.demo-why article {
    position: relative;
    padding: 40px 32px;
    background: var(--ink-2);
    transition: background 0.3s, box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.demo-why article:hover {
    background: #1c2230;
}

.demo-why article.is-visible {
    background: #1c2230;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2);
}

.demo-why article::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    background: linear-gradient(90deg, var(--teal), var(--lime));
}

.demo-why article:hover::after {
    transform: scaleX(1);
}

.demo-why article.is-visible::after {
    transform: scaleX(1);
}

.demo-why i {
    display: block;
    margin-bottom: 20px;
    font-size: 34px;
    color: var(--lime);
}

.demo-why h3 {
    margin: 0 0 12px;
    font-family: var(--ff-display);
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
}

.demo-why p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.62);
}

.demo-path {
    max-width: 700px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.demo-path li {
    display: flex;
    align-items: start;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(10, 14, 20, 0.07);
    transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.demo-path li:last-child {
    border-bottom: 0;
}

.demo-path li > span {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(10, 14, 20, 0.07);
    color: var(--ink);
    font-family: var(--ff-display);
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: background 0.3s var(--ease-spring), color 0.3s var(--ease-spring);
}

.demo-path li:hover > span {
    background: var(--lime);
    color: var(--ink);
}

.demo-path li.is-visible {
    border-bottom-color: rgba(10, 14, 20, 0.14);
}

.demo-path li.is-visible > span {
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 12px 24px rgba(184, 245, 58, 0.18);
}

.demo-path strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.demo-path p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    color: rgba(10, 14, 20, 0.62);
}

.demo-cta {
    padding: 160px 0 0;
    text-align: center;
}

.demo-cta__inner {
    max-width: 860px;
}

.demo-cta__title {
    margin: 0 0 28px;
    font-family: var(--ff-display);
    font-size: clamp(48px, 8vw, 110px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.demo-cta__title em {
    font-family: var(--ff-serif);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    color: var(--lime);
    font-size: 0.75em;
}

.demo-cta__sub {
    margin: 0 0 56px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.62);
}

.demo-cta__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.demo-cta__card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 16px;
    border: 1px solid rgba(245, 242, 235, 0.08);
    border-radius: 16px;
    background: var(--ink);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s var(--ease-spring), border-color 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring);
}

.demo-cta__card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.demo-cta__card--guru::before {
    background: linear-gradient(135deg, rgba(0, 212, 160, 0.1), transparent);
}

.demo-cta__card--penyelia::before {
    background: linear-gradient(135deg, rgba(184, 245, 58, 0.1), transparent);
}

.demo-cta__card--admin::before {
    background: linear-gradient(135deg, rgba(255, 85, 51, 0.1), transparent);
}

.demo-cta__card--ppm::before {
    background: linear-gradient(135deg, rgba(240, 192, 64, 0.1), transparent);
}

.demo-cta__card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 242, 235, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.demo-cta__card:hover::before {
    opacity: 1;
}

.demo-cta__card i,
.demo-cta__card strong,
.demo-cta__card span {
    position: relative;
    z-index: 1;
}

.demo-cta__card i {
    font-size: 28px;
    color: var(--lime);
}

.demo-cta__card strong {
    font-family: var(--ff-display);
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.demo-cta__card span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.68);
}

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

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

.reveal-pop {
    transform: translateY(26px) scale(0.96);
}

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

.demo-hero__metrics article.reveal-pop--metric:nth-child(1) {
    --reveal-delay: 0s;
}

.demo-hero__metrics article.reveal-pop--metric:nth-child(2) {
    --reveal-delay: 0.08s;
}

.demo-hero__metrics article.reveal-pop--metric:nth-child(3) {
    --reveal-delay: 0.16s;
}

.demo-flow article.reveal-pop--flow:nth-child(1),
.demo-why article.reveal-pop--why:nth-child(1),
.demo-path li.reveal-pop--path:nth-child(1) {
    --reveal-delay: 0s;
}

.demo-flow article.reveal-pop--flow:nth-child(2),
.demo-why article.reveal-pop--why:nth-child(2),
.demo-path li.reveal-pop--path:nth-child(2) {
    --reveal-delay: 0.07s;
}

.demo-flow article.reveal-pop--flow:nth-child(3),
.demo-why article.reveal-pop--why:nth-child(3),
.demo-path li.reveal-pop--path:nth-child(3) {
    --reveal-delay: 0.14s;
}

.demo-flow article.reveal-pop--flow:nth-child(4),
.demo-why article.reveal-pop--why:nth-child(4),
.demo-path li.reveal-pop--path:nth-child(4) {
    --reveal-delay: 0.21s;
}

.demo-flow article.reveal-pop--flow:nth-child(5),
.demo-why article.reveal-pop--why:nth-child(5),
.demo-path li.reveal-pop--path:nth-child(5) {
    --reveal-delay: 0.28s;
}

.demo-flow article.reveal-pop--flow:nth-child(6),
.demo-why article.reveal-pop--why:nth-child(6),
.demo-path li.reveal-pop--path:nth-child(6) {
    --reveal-delay: 0.35s;
}

.demo-flow article.reveal-pop--flow:nth-child(7),
.demo-path li.reveal-pop--path:nth-child(7) {
    --reveal-delay: 0.42s;
}

.demo-switch-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: clamp(36px, 7vw, 88px) 18px;
}

.demo-switch {
    position: relative;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px);
    border-radius: 34px;
    border: 1px solid rgba(245, 242, 235, 0.08);
    background:
        radial-gradient(circle at 85% 18%, rgba(0, 212, 160, 0.12), transparent 24%),
        radial-gradient(circle at 14% 84%, rgba(184, 245, 58, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(20, 26, 36, 0.98), rgba(10, 14, 20, 0.98));
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.demo-switch::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 35%, transparent 70%, rgba(184, 245, 58, 0.02));
    pointer-events: none;
}

.demo-switch__header {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin-bottom: 34px;
}

.demo-switch__header h1 {
    margin: 16px 0 14px;
    font-family: var(--ff-display);
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
}

.demo-switch__header p,
.demo-switch-reset-note {
    color: rgba(245, 242, 235, 0.7);
    line-height: 1.8;
}

.demo-switch__slot {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    border: 1px solid rgba(0, 212, 160, 0.24);
    border-radius: 999px;
    background: rgba(0, 212, 160, 0.08);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
}

.demo-switch-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(245, 242, 235, 0.06);
}

.demo-switch-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.demo-switch-card:hover,
.demo-switch-card:focus-visible {
    transform: translateY(-4px);
    background: #161d29;
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
    color: var(--white);
}

.demo-switch-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 242, 235, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--teal);
    font-size: 1.3rem;
}

.demo-switch-card span {
    font-family: var(--ff-display);
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.demo-switch-card small {
    color: rgba(245, 242, 235, 0.66);
    line-height: 1.7;
    font-size: 0.98rem;
}

.demo-switch__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.demo-switch-reset-form {
    margin: 0;
}

.demo-switch__link {
    color: rgba(245, 242, 235, 0.7);
    font-size: 0.98rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.demo-switch__link:hover,
.demo-switch__link:focus-visible {
    color: var(--lime);
}

.demo-switch-reset-note {
    margin: 18px 0 0;
    max-width: 760px;
    font-size: 0.95rem;
}

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

@keyframes demo-marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes demo-orb-one {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

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

@keyframes demo-orb-two {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

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

@keyframes demo-orb-three {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .demo-ambient,
    .demo-marquee__track {
        animation: none;
    }

    .demo-btn,
    .demo-role-card__icon,
    .demo-flow__node,
    .demo-cta__card,
    .demo-switch-card {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition-delay: 0s;
    }
}

@media (max-width: 1199.98px) {
    .demo-bento__item--wide,
    .demo-bento__item:not(.demo-bento__item--wide) {
        grid-column: span 3;
    }

    .demo-flow,
    .demo-switch-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

@media (max-width: 991.98px) {
    .demo-section__head {
        align-items: start;
        gap: 20px;
    }

    .demo-roles-grid,
    .demo-compare {
        grid-template-columns: 1fr;
    }

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

    .demo-flow {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 52px;
    }

    .demo-flow::before {
        display: none;
    }

    .demo-flow article {
        padding: 24px 22px;
        border: 1px solid rgba(245, 242, 235, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.02);
        text-align: left;
    }

    .demo-flow__node {
        margin: 0 0 16px;
    }

    .demo-flow h3 {
        font-size: 14px;
    }

    .demo-flow p {
        font-size: 12px;
        line-height: 1.6;
    }

    .demo-bento__item,
    .demo-bento__item--wide {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .demo-shell {
        width: min(100% - 20px, 560px);
    }

    .demo-hero {
        min-height: auto;
        padding: 40px 0 72px;
    }

    .demo-hero__sub {
        max-width: 34rem;
        font-size: 15px;
        line-height: 1.7;
    }

    .demo-hero__actions .demo-btn,
    .demo-switch__footer .demo-btn {
        width: 100%;
        justify-content: center;
    }

    .demo-hero__metrics {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .demo-hero__metrics article {
        min-width: 0;
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
    }

    .demo-hero__metrics article:last-child {
        border-bottom: 0;
    }

    .demo-section {
        padding: 88px 0;
    }

    .demo-title {
        font-size: clamp(36px, 14vw, 64px);
    }

    .demo-sub {
        font-size: 15px;
        line-height: 1.7;
    }

    .demo-marquee {
        padding: 14px 0;
    }

    .demo-marquee__track span {
        padding: 0 24px;
        font-size: 11px;
    }

    .demo-roles-grid,
    .demo-bento,
    .demo-flow,
    .demo-why,
    .demo-cta__grid,
    .demo-switch-grid {
        grid-template-columns: 1fr;
    }

    .demo-role-card,
    .demo-bento__item,
    .demo-compare__card,
    .demo-why article {
        padding: 30px 24px;
    }

    .demo-role-card__num {
        font-size: 56px;
        top: -10px;
    }

    .demo-bento__title-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .demo-bento__icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .demo-role-card h3,
    .demo-compare__card h3 {
        font-size: 26px;
    }

    .demo-role-card__flow {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 0.07em;
    }

    .demo-role-card li {
        gap: 8px;
        padding: 9px 0;
        font-size: 13px;
        line-height: 1.55;
    }

    .demo-role-card__action {
        margin-top: 24px;
        font-size: 12px;
    }

    .demo-role-card__pw {
        margin-top: 12px;
        font-size: 11px;
    }

    .demo-flow {
        gap: 14px;
    }

    .demo-flow article {
        padding: 24px 18px;
    }

    .demo-flow h3 {
        font-size: 13px;
    }

    .demo-cta {
        padding-top: 120px;
    }

    .demo-path li {
        gap: 18px;
        padding: 20px 0;
    }

    .demo-path strong {
        font-size: 15px;
    }

    .demo-path p {
        font-size: 13px;
        line-height: 1.65;
    }

    .demo-cta__card {
        min-height: 144px;
        padding: 24px 14px;
    }

    .demo-cta__card strong {
        font-size: 22px;
    }

    .demo-cta__card span {
        font-size: 11px;
    }

    .demo-switch__footer {
        align-items: stretch;
    }

    .demo-switch {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .demo-switch__link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .demo-page {
        padding-bottom: 48px;
    }

    .demo-hero {
        padding: 28px 0 64px;
    }

    .demo-hero__actions {
        gap: 12px;
        margin-top: 36px;
    }

    .demo-btn {
        padding: 13px 20px;
        font-size: 13px;
    }

    .demo-hero__title {
        font-size: clamp(58px, 17vw, 84px);
        letter-spacing: 0.015em;
    }

    .demo-eyebrow,
    .demo-tag {
        gap: 8px;
        font-size: 10px;
        letter-spacing: 0.16em;
    }

    .demo-eyebrow__line,
    .demo-tag::before {
        width: 18px;
    }

    .demo-hero__metrics article {
        padding: 18px 20px;
    }

    .demo-section {
        padding: 72px 0;
    }

    .demo-section__head {
        margin-bottom: 40px;
    }

    .demo-title {
        font-size: clamp(32px, 13vw, 48px);
    }

    .demo-sub {
        font-size: 14px;
    }

    .demo-role-card,
    .demo-bento__item,
    .demo-compare__card,
    .demo-why article,
    .demo-flow article {
        padding: 24px 20px;
    }

    .demo-bento__title-row {
        align-items: flex-start;
        gap: 10px;
    }

    .demo-bento__icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 15px;
    }

    .demo-bento__item h3 {
        font-size: 24px;
    }

    .demo-path li {
        gap: 14px;
        padding: 18px 0;
    }

    .demo-path li > span {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .demo-path strong {
        margin-bottom: 3px;
        font-size: 14px;
    }

    .demo-path p {
        font-size: 12px;
        line-height: 1.6;
    }

    .demo-cta {
        padding-top: 96px;
    }

    .demo-cta__sub {
        margin-bottom: 40px;
        font-size: 15px;
    }

    .demo-cta__title {
        font-size: clamp(42px, 16vw, 64px);
    }

    .demo-switch-card {
        min-height: 0;
        padding: 20px;
    }
}
