body[data-project="viriko"] {
    --accent: #7c6ff0;
    --accent-strong: #6a5de0;
    --accent-ink: #5b50c4;
    font-family: var(--font-rounded);
}

html.dark body[data-project="viriko"] {
    --accent: #9c9ee0;
    --accent-strong: #b1b2ec;
}

body[data-project="viriko"] h1,
body[data-project="viriko"] h2,
body[data-project="viriko"] h3 {
    font-family: var(--font-rounded);
    letter-spacing: -0.01em;
}

.vk-hero {
    position: relative;
    display: grid;
    gap: var(--space-3) var(--space-6);
    align-items: center;
    text-align: center;
}

@media (min-width: 48rem) {
    .vk-hero {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

.vk-hero__copy {
    order: 2;
}

.vk-hero__art {
    order: 1;
    display: flex;
    justify-content: center;
}

@media (min-width: 48rem) {
    .vk-hero__copy { order: 1; }
    .vk-hero__art { order: 2; }
}

.vk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    padding: 0.28rem 0.7rem;
    border-radius: var(--r-pill);
    border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
    background: color-mix(in srgb, var(--accent) 14%, var(--surface));
    color: var(--accent-ink);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

html.dark .vk-eyebrow {
    background: color-mix(in srgb, var(--accent) 26%, transparent);
    border-color: color-mix(in srgb, var(--accent) 48%, transparent);
    color: #ecebff;
}

.vk-eyebrow__dot {
    width: 6px;
    height: 6px;
    border-radius: var(--r-pill);
    background: var(--accent);
}

.vk-title {
    font-size: clamp(2.25rem, 5.5vw, 3.25rem);
    font-weight: 900;
    line-height: var(--lh-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--text-strong);
    text-wrap: balance;
}

.vk-lede {
    margin-top: var(--space-5);
    max-width: 30rem;
    margin-inline: auto;
    font-size: var(--text-lg);
    line-height: var(--lh-relaxed);
    color: var(--text-muted);
}

@media (min-width: 48rem) {
    .vk-lede { margin-inline: 0; }
}

.vk-hero__cta {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
}

@media (min-width: 48rem) {
    .vk-hero__cta { justify-content: flex-start; }
}

.vk-mascot {
    position: relative;
}

.vk-card {
    position: relative;
    z-index: 1;
    padding: var(--space-6) var(--space-8);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--elev-2);
    background-image: radial-gradient(circle at 50% 62%, var(--accent-weak), transparent 60%);
}

.vk-donkey {
    display: block;
    height: 15rem;
    width: auto;
}

@media (min-width: 40rem) {
    .vk-donkey { height: 18rem; }
}

.vk-note {
    position: absolute;
    z-index: 2;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--elev-1);
}

.vk-note--a {
    left: -2.5rem;
    top: 1.5rem;
    width: 6rem;
    transform: rotate(-12deg);
}

.vk-note--b {
    left: -2.5rem;
    bottom: 4rem;
    width: 5rem;
    transform: rotate(6deg);
}

.vk-note__lines {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.vk-note__line {
    display: block;
    height: 6px;
    border-radius: var(--r-pill);
    background: var(--border-strong);
}

.vk-check {
    position: absolute;
    z-index: 2;
    right: -2.25rem;
    top: 2.5rem;
    width: 7rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-3);
    border-radius: var(--r-sm);
    border: 1px solid var(--accent-soft);
    background: var(--surface);
    box-shadow: var(--elev-1);
    transform: rotate(6deg);
}

.vk-check__row {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.vk-check__box {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: var(--r-pill);
    border: 2px solid var(--accent-soft);
}

.vk-check__box--done {
    display: grid;
    place-items: center;
    border: none;
    background: var(--accent);
    color: var(--on-accent);
}

.vk-check__box--done svg {
    width: 8px;
    height: 8px;
}

.vk-check__line {
    display: block;
    height: 6px;
    border-radius: var(--r-pill);
    background: var(--border-strong);
}

.vk-dot {
    position: absolute;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-radius: var(--r-pill);
}

.vk-dot--sq {
    border-radius: var(--r-xs);
    transform: rotate(12deg);
}

.vk-dot--1 { left: 0.5rem; top: 0.5rem; }
.vk-dot--2 { left: -0.5rem; top: 6rem; width: 8px; height: 8px; }
.vk-dot--3 { left: 1rem; bottom: 2rem; width: 8px; height: 8px; }
.vk-dot--4 { right: -0.5rem; bottom: 6rem; width: 8px; height: 8px; }

.vk-sparkle {
    position: absolute;
    z-index: 2;
    color: var(--accent-ink);
}

.vk-sparkle--a { right: -0.25rem; top: 1rem; font-size: var(--text-lg); }
.vk-sparkle--b { right: 1.5rem; bottom: 1.5rem; font-size: var(--text-sm); opacity: 0.7; }

/* Tighten the vertical rhythm between Viriko's stacked cards */
.vk-section {
    padding-block: var(--space-6);
}

.vk-motif {
    padding: var(--space-8);
}

.vk-motif__eyebrow {
    text-align: center;
    margin-bottom: var(--space-6);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--text-faint);
}

.vk-motif__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
}

@media (min-width: 48rem) {
    .vk-motif__row {
        flex-direction: row;
        align-items: stretch;
        gap: var(--space-8);
    }
}

.vk-dump {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    padding: var(--space-5);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--surface-2);
}

.vk-dump__head {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.vk-dump__mic {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: var(--on-accent);
}

.vk-dump__mic svg {
    width: 12px;
    height: 12px;
}

.vk-dump__label {
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text-faint);
}

.vk-dump__text {
    font-size: var(--text-md);
    font-style: italic;
    line-height: var(--lh-relaxed);
    color: var(--text-muted);
}

.vk-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-ink);
    transform: rotate(90deg);
}

.vk-arrow svg {
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 48rem) {
    .vk-arrow { transform: none; }
    .vk-arrow svg { width: 2.25rem; height: 2.25rem; }
}

.vk-sorted {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
    max-width: 20rem;
    padding: var(--space-5);
    border-radius: var(--r-md);
    border: 1px solid var(--accent-soft);
    background: var(--surface);
    box-shadow: var(--elev-1);
}

.vk-sorted__label {
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--accent-ink);
}

.vk-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.vk-group__head {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.vk-swatch {
    width: 8px;
    height: 8px;
    border-radius: var(--r-pill);
}

.vk-group__name {
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-faint);
}

.vk-task {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.vk-task__box {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border-radius: var(--r-pill);
    border: 2px solid var(--accent-soft);
}

.vk-task__box--urgent {
    border-color: var(--danger);
}

.vk-task__name {
    font-size: var(--text-sm);
    color: var(--text);
}

.vk-task__name--urgent {
    font-weight: 700;
    color: var(--text-strong);
}

.vk-task--urgent {
    margin-inline: calc(var(--space-2) * -1);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--r-sm);
    background: color-mix(in srgb, var(--danger) 8%, transparent);
}

.vk-flag {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    color: var(--danger);
}

.vk-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    margin-left: auto;
    padding: 0.15rem 0.5rem;
    border-radius: var(--r-pill);
    background: var(--accent-weak);
    font-size: var(--text-xs);
    font-weight: 800;
    white-space: nowrap;
    color: var(--accent-ink);
}

.vk-chip svg {
    width: 10px;
    height: 10px;
}

.vk-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
}

@media (min-width: 40rem) {
    .vk-features {
        grid-template-columns: 1fr 1fr;
    }
}

.vk-feature__emoji {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.vk-feature__title {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--text-strong);
}

.vk-feature__text {
    margin-top: var(--space-2);
    font-size: var(--text-md);
    line-height: var(--lh-relaxed);
    color: var(--text-muted);
}

.vk-premium {
    position: relative;
    overflow: hidden;
    padding: var(--space-12);
}

.vk-premium__glow {
    position: absolute;
    z-index: 0;
    bottom: -120px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: var(--r-pill);
    pointer-events: none;
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    filter: blur(40px);
    opacity: 0.7;
}

.vk-premium__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 48rem) {
    .vk-premium__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vk-premium__eyebrow {
    color: var(--accent-ink);
}

.vk-premium__title {
    margin-top: var(--space-3);
    font-size: var(--text-3xl);
    font-weight: 900;
    line-height: var(--lh-snug);
    color: var(--text-strong);
    text-wrap: balance;
}

.vk-premium__text {
    margin-top: var(--space-4);
    max-width: 28rem;
    font-size: var(--text-md);
    line-height: var(--lh-relaxed);
    color: var(--text-muted);
}

.vk-premium__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--text);
}

@media (min-width: 48rem) {
    .vk-premium__list {
        justify-self: end;
    }
}

.vk-premium__list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    white-space: nowrap;
}

.vk-premium__tick {
    color: var(--accent-ink);
    font-weight: 900;
}

.vk-premium__cta-li {
    margin-top: var(--space-2);
}

.vk-privacy p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

@keyframes vkFloaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes vkBob {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-9px) rotate(1deg); }
}

.vk-floaty {
    animation: vkFloaty 5s ease-in-out infinite;
}

.vk-bob {
    animation: vkBob 6.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .vk-floaty,
    .vk-bob {
        animation: none;
    }
}

.vk-name {
    color: var(--accent);
}
