/* Homepage-only translation of the v0 Tailwind utilities. */

body.home-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page .container {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1rem;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
    letter-spacing: 0;
}

.home-page .lucide-icon {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
}

.home-page .lucide-icon.icon--small {
    width: 1rem;
    height: 1rem;
}

.home-page .lucide-icon.icon--tiny {
    width: .875rem;
    height: .875rem;
}

/* Header: site-header.tsx */
.home-page .site-header--home {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid color-mix(in oklch, var(--border) 80%, transparent);
    background: color-mix(in oklch, var(--background) 85%, transparent);
    backdrop-filter: blur(12px);
}

.home-page .site-header--home::before {
    content: none;
}

.home-page .header-grid--home {
    display: flex;
    min-height: 64px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.home-page .brand--home {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--foreground);
    text-decoration: none;
}

.home-page .brand--home .brand-icon {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.home-page .brand--home > span {
    display: inline;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
}

.home-page .site-header--home .nav-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--foreground);
    box-shadow: none;
}

.home-page .site-header--home .nav-toggle:hover {
    background: var(--secondary);
    color: var(--foreground);
    transform: none;
}

.home-page .site-header--home .nav-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.home-page .site-header--home .nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.home-page .site-header--home .nav-toggle span:nth-child(3) { transform: translateY(6px); }
.home-page .site-header--home .nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.home-page .site-header--home .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.home-page .site-header--home .nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }

.home-page .site-header--home .main-nav--home {
    display: flex;
    width: calc(100% + 2rem);
    max-height: 0;
    flex: 0 0 calc(100% + 2rem);
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    overflow: hidden;
    margin-inline: -1rem;
    padding: 0 1rem;
    border: 0;
    border-top: 0 solid var(--border);
    border-radius: 0;
    background: var(--background);
    box-shadow: none;
    transition: max-height 200ms ease, padding 200ms ease, border-width 200ms ease;
}

.home-page .site-header--home .main-nav--home.is-open {
    max-height: 320px;
    padding-block: .75rem;
    border-top-width: 1px;
}

.home-page .site-header--home .main-nav--home a {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: .625rem .75rem;
    border-radius: 8px;
    color: var(--foreground);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
}

.home-page .site-header--home .main-nav--home a::after {
    content: none;
}

.home-page .site-header--home .main-nav--home a:hover,
.home-page .site-header--home .main-nav--home a.is-highlighted {
    background: var(--secondary);
    color: var(--foreground);
}

.home-page .site-header--home .main-nav--home .home-nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: .25rem;
    background: var(--primary);
    color: var(--primary-foreground);
}

.home-page .site-header--home .header-cta {
    display: none;
    height: 36px;
    min-height: 36px;
    align-items: center;
    border-radius: 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding-inline: 1rem;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
}

.home-page .site-header--home .header-search--home {
    display: flex;
    width: 100%;
    max-width: 18rem;
    min-height: 38px;
    align-items: center;
    gap: .375rem;
    margin: 0;
    padding: .25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.home-page .site-header--home .header-search--home input {
    width: auto;
    min-width: 0;
    height: 28px;
    flex: 1 1 auto;
    padding: 0 .5rem;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--foreground);
    font-size: .875rem;
    line-height: 1.25rem;
    box-shadow: none;
}

.home-page .site-header--home .header-search--home input:focus {
    box-shadow: none;
}

.home-page .site-header--home .header-search--home button {
    display: inline-flex;
    width: auto;
    height: 30px;
    min-height: 30px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 .75rem;
    border: 0;
    border-radius: 6px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: .8125rem;
    font-weight: 500;
    line-height: 1rem;
    opacity: 1;
}

.home-page .site-header--home .header-search--home button:hover {
    background: color-mix(in oklch, var(--secondary) 70%, transparent);
    color: var(--secondary-foreground);
    transform: none;
}

/* Hero: v0 desktop keeps the media next to the copy; mobile stacks it below. */
.home-page .home-hero {
    position: relative;
    overflow: hidden;
}

.home-page .home-hero__inner {
    display: block;
    padding-block: 4rem;
}

.home-page .home-hero__copy {
    display: block;
}

.home-page .soft-pill {
    display: inline-flex;
    width: fit-content;
    min-height: 26px;
    align-items: center;
    gap: .5rem;
    margin: 0;
    padding: .25rem .75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    color: var(--muted-foreground);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1rem;
}

.home-page .soft-pill .lucide-icon {
    color: var(--primary);
}

.home-page .home-hero__copy h1 {
    margin: 1.25rem 0 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.05;
    text-wrap: balance;
}

.home-page .home-hero__copy > p:not(.soft-pill) {
    max-width: 32rem;
    margin: 1.25rem 0 0;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.75;
    text-wrap: pretty;
}

.home-page .home-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 2rem 0 0;
}

.home-page .home-hero .button {
    display: inline-flex;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 0 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
}

.home-page .home-hero .button:hover {
    background: color-mix(in oklch, var(--primary) 90%, transparent);
    border-color: color-mix(in oklch, var(--primary) 90%, transparent);
    color: var(--primary-foreground);
    transform: none;
}

.home-page .home-hero .button.secondary {
    border-color: var(--border);
    background: var(--card);
    color: var(--foreground);
}

.home-page .home-hero .button.secondary:hover {
    border-color: var(--border);
    background: var(--secondary);
    color: var(--foreground);
}

.home-page .home-search {
    position: static;
    display: flex;
    width: 100%;
    max-width: 28rem;
    min-height: 54px;
    align-items: center;
    gap: .5rem;
    margin: 2rem 0 0;
    padding: .5rem;
    overflow: visible;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.home-page .home-search::after {
    content: none;
}

.home-page .home-search__icon {
    display: flex;
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    align-items: center;
    justify-content: center;
    margin-left: .5rem;
    color: var(--muted-foreground);
}

.home-page .home-search input {
    width: auto;
    min-width: 0;
    height: auto;
    flex: 1 1 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--foreground);
    font-size: .875rem;
    line-height: 1.25rem;
    box-shadow: none;
}

.home-page .home-search input:focus {
    box-shadow: none;
}

.home-page .home-search button {
    position: static;
    display: inline-flex;
    width: auto;
    height: 36px;
    min-height: 36px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border: 0;
    border-radius: 8px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    opacity: 1;
}

.home-page .home-search button:hover {
    background: color-mix(in oklch, var(--secondary) 70%, transparent);
    color: var(--secondary-foreground);
    transform: none;
}

.home-page .home-hero__visual {
    position: relative;
    margin-top: 2.5rem;
}

.home-page .home-hero__visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 2.2);
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.25);
}

/* Shared v0 section primitives. */
.home-page .home-section,
.home-page .choice-band,
.home-page .trust-panel {
    padding-block: 4rem;
    border-top: 1px solid var(--border);
}

.home-page .home-section--soft {
    background: color-mix(in oklch, var(--card) 50%, transparent);
}

.home-page .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 2.5rem;
}

.home-page .section-heading > div {
    max-width: 42rem;
}

.home-page .section-kicker {
    margin: 0;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.home-page .section-heading h2,
.home-page .choice-band h2,
.home-page .home-callout h2 {
    margin: .5rem 0 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.1;
    text-wrap: balance;
}

.home-page .section-link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
}

.home-page .section-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Primary route cards. */
.home-page .route-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.home-page .route-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.8);
    background: var(--card);
    color: var(--foreground);
    text-decoration: none;
    box-shadow: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.home-page .route-card:hover {
    border-color: color-mix(in oklch, var(--primary) 40%, transparent);
    color: var(--foreground);
    box-shadow: 0 8px 30px -12px rgba(0,0,0,.15);
    transform: none;
}

.home-page .rk-card-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in oklch, var(--primary) 10%, transparent);
    color: var(--primary);
}

.home-page .route-card .eyebrow {
    margin: 1rem 0 0;
    color: var(--muted-foreground);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.home-page .route-card h3 {
    margin: .25rem 0 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.home-page .route-card p:not(.eyebrow) {
    flex: 1 1 auto;
    margin: .5rem 0 0;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.625;
}

.home-page .route-card .text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .25rem;
    margin-top: 1rem;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.home-page .route-card .text-link::after {
    content: none;
}

.home-page .route-card:hover .text-link .lucide-icon,
.home-page .profile-card:hover .profile-card__link .lucide-icon {
    transform: translateX(2px);
}

/* Group cards. */
.home-page .tile-grid,
.home-page .card-grid,
.home-page .knowledge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.home-page .group-tile {
    display: flex;
    min-height: 0;
    gap: 1rem;
    padding: 1.25rem;
    overflow: visible;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.8);
    background: var(--card);
    color: var(--foreground);
    text-decoration: none;
    box-shadow: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.home-page .group-tile::after {
    content: none;
}

.home-page .group-tile:hover {
    border-color: color-mix(in oklch, var(--primary) 40%, transparent);
    color: var(--foreground);
    box-shadow: 0 8px 30px -12px rgba(0,0,0,.15);
    transform: none;
}

.home-page .group-tile .rk-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: var(--secondary);
    transition: background 200ms ease, color 200ms ease;
}

.home-page .group-tile .rk-card-icon .lucide-icon {
    width: 24px;
    height: 24px;
}

.home-page .group-tile:hover .rk-card-icon {
    background: var(--primary);
    color: var(--primary-foreground);
}

.home-page .group-tile h3 {
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75rem;
}

.home-page .group-tile p {
    margin: .25rem 0 0;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.625;
}

/* Choice helper. */
.home-page .choice-band {
    background: var(--primary);
    color: var(--primary-foreground);
}

.home-page .choice-band__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2rem;
}

.home-page .choice-band .section-kicker,
.home-page .choice-band h2 {
    color: var(--primary-foreground);
}

.home-page .choice-band p {
    max-width: 36rem;
    margin: 1rem 0 0;
    color: color-mix(in oklch, var(--primary-foreground) 85%, transparent);
    line-height: 1.625;
}

.home-page .choice-band .chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.5rem 0 0;
}

.home-page .choice-band .chip {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: .25rem .75rem;
    border: 1px solid color-mix(in oklch, var(--primary-foreground) 25%, transparent);
    border-radius: 999px;
    background: transparent;
    color: var(--primary-foreground);
    font-size: .875rem;
    font-weight: 400;
}

.home-page .choice-band__button {
    display: inline-flex;
    width: fit-content;
    height: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 0 1.75rem;
    border: 0;
    border-radius: 12px;
    background: var(--primary-foreground);
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
}

.home-page .choice-band__button:hover {
    background: var(--primary-foreground);
    color: var(--primary);
    opacity: .9;
    transform: none;
}

/* Featured profile cards. */
.home-page .profile-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.8);
    background: var(--card);
    color: var(--foreground);
    text-decoration: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.home-page .profile-card:hover {
    border-color: color-mix(in oklch, var(--primary) 40%, transparent);
    color: var(--foreground);
    box-shadow: 0 8px 30px -12px rgba(0,0,0,.15);
}

.home-page .profile-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.home-page .profile-card__group {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    gap: .375rem;
    padding: .25rem .625rem;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1rem;
}

.home-page .profile-card__group .lucide-icon {
    width: .875rem;
    height: .875rem;
    color: var(--primary);
}

.home-page .profile-card__size {
    color: var(--muted-foreground);
    font-size: .75rem;
    line-height: 1rem;
    text-transform: capitalize;
}

.home-page .profile-card h3 {
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
}

.home-page .profile-card > p {
    flex: 1 1 auto;
    margin: .5rem 0 0;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.625;
}

.home-page .profile-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: .75rem;
    line-height: 1rem;
}

.home-page .profile-card__meta strong {
    color: var(--foreground);
    font-weight: 600;
}

.home-page .profile-card__link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-left: auto;
    color: var(--primary);
    font-weight: 500;
}

/* Comparison callout. */
.home-page .home-callout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-page .home-callout > div {
    max-width: 36rem;
}

.home-page .home-callout p:not(.section-kicker) {
    margin: 1rem 0 0;
    color: var(--muted-foreground);
    line-height: 1.625;
}

.home-page .home-callout > .button {
    display: inline-flex;
    height: 44px;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    gap: .5rem;
    padding: 0 1.5rem;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
}

.home-page .home-callout > .button:hover {
    background: color-mix(in oklch, var(--primary) 90%, transparent);
    color: var(--primary-foreground);
    transform: none;
}

/* Knowledge cards. */
.home-page .knowledge-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.8);
    background: var(--card);
    color: var(--foreground);
    text-decoration: none;
    transition: border-color 200ms ease;
}

.home-page .knowledge-card:hover {
    border-color: color-mix(in oklch, var(--primary) 40%, transparent);
    color: var(--foreground);
}

.home-page .knowledge-card .soft-pill--small {
    min-height: 24px;
    gap: .375rem;
    padding: .25rem .625rem;
    border: 0;
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.home-page .knowledge-card strong {
    margin-top: 1rem;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.375;
}

.home-page .knowledge-card > span:last-child {
    flex: 1 1 auto;
    margin-top: .5rem;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.625;
}

/* Trust block. */
.home-page .trust-panel {
    background: color-mix(in oklch, var(--secondary) 40%, transparent);
}

.home-page .trust-panel__content {
    display: flex;
    max-width: 56rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.home-page .trust-panel .rk-card-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: calc(var(--radius) * 1.8);
}

.home-page .trust-panel .rk-card-icon .lucide-icon {
    width: 24px;
    height: 24px;
}

.home-page .trust-panel h2 {
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.home-page .trust-panel p:not(.section-kicker) {
    max-width: 42rem;
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.625;
}

/* Footer: site-footer.tsx */
.home-page .site-footer--home {
    padding: 0;
    border-top: 1px solid var(--border);
    background: color-mix(in oklch, var(--secondary) 40%, transparent);
    color: var(--foreground);
}

.home-page .v0-footer__inner {
    padding-block: 3rem;
}

.home-page .v0-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.home-page .v0-footer__brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--foreground);
    text-decoration: none;
}

.home-page .v0-footer__brand .brand-icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.home-page .v0-footer__brand > span {
    display: inline;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.home-page .v0-footer__grid p {
    max-width: 20rem;
    margin: .75rem 0 0;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.625;
}

.home-page .v0-footer__grid h3 {
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.25rem;
}

.home-page .v0-footer__grid ul {
    display: grid;
    gap: .5rem;
    margin: .75rem 0 0;
    padding: 0;
    list-style: none;
}

.home-page .v0-footer__grid li {
    margin: 0;
}

.home-page .v0-footer__grid a:not(.v0-footer__brand) {
    color: var(--muted-foreground);
    font-size: .875rem;
    text-decoration: none;
}

.home-page .v0-footer__grid a:not(.v0-footer__brand):hover {
    color: var(--foreground);
}

.home-page .v0-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.home-page .v0-footer__bottom p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: .75rem;
    line-height: 1rem;
}

/* Public pages: carry the homepage visual language across the rest of the site. */
.home-page.public-route .site-header--home .main-nav--home a[aria-current="page"] {
    background: var(--secondary);
    color: var(--foreground);
}

.home-page.public-route .site-header--home .header-cta {
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--foreground);
}

.home-page.public-route .site-header--home .header-cta:hover {
    background: var(--secondary);
    color: var(--foreground);
}

.home-page.public-route .page-hero,
.home-page.public-route .profile-hero {
    padding-block: 4rem;
    border-bottom: 1px solid var(--border);
    background: color-mix(in oklch, var(--card) 50%, transparent);
}

.home-page.public-route .page-hero h1,
.home-page.public-route .profile-hero h1 {
    max-width: 48rem;
    margin: .5rem 0 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.05;
    text-wrap: balance;
}

.home-page.public-route .page-hero p:not(.eyebrow):not(.muted),
.home-page.public-route .profile-hero p:not(.eyebrow):not(.muted) {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.home-page.public-route .eyebrow {
    margin: 0;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    letter-spacing: 0;
    text-transform: none;
}

.home-page.public-route .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 0 1rem;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.25rem;
}

.home-page.public-route .breadcrumbs a {
    color: var(--muted-foreground);
    text-decoration: none;
}

.home-page.public-route .breadcrumbs a:hover {
    color: var(--foreground);
}

.home-page.public-route .breadcrumbs > * + *::before {
    content: "/";
    margin-right: .5rem;
    color: var(--border);
}

.home-page.public-route .section {
    padding-block: 4rem;
}

.home-page.public-route .tile-grid,
.home-page.public-route .card-grid,
.home-page.public-route .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.25rem;
}

.home-page.public-route .tile-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
    align-items: stretch;
}

.home-page.public-route .tile-grid .group-tile {
    position: relative;
    display: flex;
    min-height: 13rem;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.8);
    background: var(--card);
    color: var(--foreground);
    text-decoration: none;
    box-shadow: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.home-page.public-route .tile-grid .group-tile::after {
    content: "Bekijk";
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    margin-top: auto;
    padding: .25rem .75rem;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.home-page.public-route .tile-grid .group-tile:hover {
    border-color: color-mix(in oklch, var(--primary) 40%, transparent);
    box-shadow: 0 8px 30px -12px rgba(0,0,0,.15);
    transform: none;
}

.home-page.public-route .tile-grid .group-tile:hover::after {
    background: var(--primary);
    color: var(--primary-foreground);
}

.home-page.public-route .tile-grid .group-tile h2 {
    max-width: 100%;
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-page.public-route .tile-grid .group-tile p {
    max-width: 34ch;
    margin: 0;
    color: var(--muted-foreground);
    font-size: .9375rem;
    line-height: 1.625;
}

.home-page.public-route .entity-card,
.home-page.public-route .stat,
.home-page.public-route .fact-panel,
.home-page.public-route .inline-item,
.home-page.public-route .result-row,
.home-page.public-route .filter-form,
.home-page.public-route .choice-form,
.home-page.public-route .stack-form,
.home-page.public-route .empty-state,
.home-page.public-route .success,
.home-page.public-route details {
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.8);
    background: var(--card);
    color: var(--foreground);
    box-shadow: none;
}

.home-page.public-route .entity-card {
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.home-page.public-route .entity-card:hover,
.home-page.public-route .inline-item:hover,
.home-page.public-route .article-list a:hover,
.home-page.public-route .result-row:hover {
    border-color: color-mix(in oklch, var(--primary) 40%, transparent);
    box-shadow: 0 8px 30px -12px rgba(0,0,0,.15);
    transform: none;
}

.home-page.public-route .entity-card a {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: .75rem;
    color: var(--foreground);
    text-decoration: none;
}

.home-page.public-route .entity-card h3,
.home-page.public-route .inline-item h3,
.home-page.public-route .article-list strong,
.home-page.public-route .result-row h2 {
    margin: 0;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0;
}

.home-page.public-route .entity-card h3 {
    font-size: 1.25rem;
    line-height: 1.25;
}

.home-page.public-route .entity-card p,
.home-page.public-route .inline-item p,
.home-page.public-route .article-list span,
.home-page.public-route .result-row p,
.home-page.public-route .rich-text p,
.home-page.public-route .rich-text li {
    color: var(--muted-foreground);
    line-height: 1.625;
}

.home-page.public-route .animal-card__media {
    display: grid;
    aspect-ratio: 4 / 3;
    place-items: center;
    margin-bottom: .25rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--secondary);
}

.home-page.public-route .animal-card__media img {
    width: 72px;
    height: 72px;
    opacity: .72;
}

.home-page.public-route .animal-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: auto;
    color: var(--muted-foreground);
    font-size: .75rem;
    line-height: 1rem;
}

.home-page.public-route .chip {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: .25rem .75rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
}

.home-page.public-route .chip.outline {
    border-color: var(--border);
    background: var(--card);
    color: var(--muted-foreground);
}

.home-page.public-route .text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .25rem;
    color: var(--primary);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.25rem;
    text-decoration: none;
}

.home-page.public-route .text-link::after {
    content: none;
}

.home-page.public-route .profile-grid,
.home-page.public-route .split,
.home-page.public-route .profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}

.home-page.public-route .profile-mark {
    display: grid;
    min-height: 20rem;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 2.2);
    background: var(--card);
}

.home-page.public-route .profile-mark::before {
    content: none;
}

.home-page.public-route .profile-mark img {
    width: min(58%, 18rem);
    opacity: .82;
}

.home-page.public-route .inpage-nav {
    position: sticky;
    top: 64px;
    z-index: 4;
    border-bottom: 1px solid var(--border);
    background: color-mix(in oklch, var(--background) 90%, transparent);
    backdrop-filter: blur(12px);
    overflow-x: auto;
}

.home-page.public-route .inpage-nav .container {
    display: flex;
    gap: .5rem;
    padding-block: .75rem;
}

.home-page.public-route .inpage-nav a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: .375rem .75rem;
    border-radius: 999px;
    color: var(--muted-foreground);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.home-page.public-route .inpage-nav a:hover,
.home-page.public-route .inpage-nav a.is-active {
    background: var(--secondary);
    color: var(--foreground);
}

.home-page.public-route .fact-panel {
    padding: 1.5rem;
}

.home-page.public-route .fact-panel h2,
.home-page.public-route .profile-content h2,
.home-page.public-route .rich-text h2,
.home-page.public-route .empty-state h2 {
    margin: 0 0 1rem;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.1;
}

.home-page.public-route dl {
    display: grid;
    gap: .5rem;
}

.home-page.public-route dt {
    color: var(--foreground);
    font-weight: 600;
}

.home-page.public-route dd {
    margin: 0 0 .75rem;
    color: var(--muted-foreground);
}

.home-page.public-route .score {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .5rem;
    align-items: center;
    margin: 1rem 0 0;
    color: var(--muted-foreground);
}

.home-page.public-route .score strong {
    color: var(--foreground);
    font-weight: 600;
}

.home-page.public-route .score meter {
    grid-column: 1 / -1;
    width: 100%;
    height: .7rem;
    accent-color: var(--primary);
}

.home-page.public-route .profile-content section + section {
    margin-top: 3rem;
}

.home-page.public-route .medical-note,
.home-page.public-route .affiliate-note {
    padding: 1.5rem;
    border: 1px solid color-mix(in oklch, var(--accent) 35%, var(--border));
    border-radius: calc(var(--radius) * 1.8);
    background: color-mix(in oklch, var(--accent) 10%, var(--card));
}

.home-page.public-route .table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.4);
}

.home-page.public-route table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
}

.home-page.public-route th,
.home-page.public-route td {
    padding: .875rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.home-page.public-route th {
    background: var(--secondary);
    color: var(--foreground);
    font-size: .875rem;
    font-weight: 600;
}

.home-page.public-route .filter-form,
.home-page.public-route .choice-form,
.home-page.public-route .stack-form {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.home-page.public-route .filter-form {
    grid-template-columns: minmax(14rem, 1fr) minmax(12rem, .6fr) minmax(10rem, .5fr) auto;
    align-items: end;
    margin-bottom: 2rem;
}

.home-page.public-route input,
.home-page.public-route select,
.home-page.public-route textarea {
    border-color: var(--border);
    border-radius: 8px;
    background: var(--card);
    color: var(--foreground);
}

.home-page.public-route .article-list {
    display: grid;
    gap: 1rem;
}

.home-page.public-route .article-list a,
.home-page.public-route .result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.8);
    background: var(--card);
    color: var(--foreground);
    text-decoration: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.home-page.public-route .result-row {
    align-items: flex-start;
}

.home-page.public-route .rich-text {
    font-size: 1rem;
}

.home-page.public-route .rich-text h2 {
    margin-top: 3rem;
}

.home-page.public-route .site-footer--home {
    margin-top: 0;
}

@media (min-width: 640px) {
    .home-page .container {
        padding-inline: 1.5rem;
    }

    .home-page .home-hero__copy h1 {
        font-size: 3rem;
    }

    .home-page .section-heading h2,
    .home-page .choice-band h2,
    .home-page .home-callout h2 {
        font-size: 2.25rem;
    }

    .home-page .tile-grid,
    .home-page .card-grid,
    .home-page .knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .v0-footer__bottom {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .home-page .header-grid--home {
        height: 64px;
        min-height: 64px;
        flex-wrap: nowrap;
    }

    .home-page .site-header--home .nav-toggle {
        display: none;
    }

    .home-page .site-header--home .main-nav--home {
        display: flex;
        width: auto;
        max-height: none;
        flex: 0 1 auto;
        order: 0;
        flex-direction: row;
        align-items: center;
        gap: .25rem;
        overflow: visible;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .home-page .site-header--home .main-nav--home a {
        min-height: 36px;
        padding: .5rem .625rem;
        color: var(--muted-foreground);
    }

    .home-page .site-header--home .main-nav--home .home-nav-cta {
        display: none;
    }

    .home-page .site-header--home .header-cta {
        display: inline-flex;
    }

    .home-page .site-header--home .header-search--home {
        flex: 0 1 18rem;
    }

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

    .home-page .home-callout {
        flex-direction: row;
        align-items: center;
    }

    .home-page .v0-footer__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-page .home-hero__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: 4rem;
        padding-block: 6rem;
    }

    .home-page .home-hero__copy h1 {
        font-size: 3.75rem;
    }

    .home-page .home-hero__visual {
        margin-top: 0;
    }

    .home-page .home-hero__visual img {
        aspect-ratio: 4 / 3;
    }

    .home-page .tile-grid,
    .home-page .card-grid,
    .home-page .knowledge-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-page .choice-band__grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    }

    .home-page .choice-band__button {
        justify-self: end;
    }

    .home-page.public-route .profile-grid,
    .home-page.public-route .split {
        grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
        align-items: center;
        gap: 4rem;
    }

    .home-page.public-route .profile-layout {
        grid-template-columns: minmax(16rem, 21rem) minmax(0, 1fr);
        align-items: start;
        gap: 4rem;
    }

    .home-page.public-route .fact-panel {
        position: static;
    }
}

@media (max-width: 639px) {
    .home-page .home-hero__inner {
        padding-block: 3rem;
    }

    .home-page .home-hero__copy > p:not(.soft-pill) {
        font-size: 1rem;
        line-height: 1.625;
    }

    .home-page .home-search {
        max-width: 100%;
    }

    .home-page .home-search input {
        font-size: .8125rem;
    }

    .home-page .home-search button {
        padding-inline: .75rem;
    }

    .home-page .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-page .choice-band__button {
        width: 100%;
    }

    .home-page .profile-card__meta {
        gap: .75rem;
    }

    .home-page .site-header--home .header-search--home {
        max-width: none;
        flex: 0 0 100%;
        flex-direction: row;
        order: 5;
        margin-bottom: .75rem;
    }

    .home-page.public-route .page-hero,
    .home-page.public-route .profile-hero {
        padding-block: 3rem;
    }

    .home-page.public-route .page-hero h1,
    .home-page.public-route .profile-hero h1 {
        font-size: 2.25rem;
    }

    .home-page.public-route .filter-form,
    .home-page.public-route .article-list a,
    .home-page.public-route .result-row {
        grid-template-columns: 1fr;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
