:root {
    --bg: #0a0a0a;
    --panel: #121212;
    --panel-strong: #171717;
    --panel-soft: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f5f5;
    --muted: #686868;
    --muted-strong: #dcdcdc;
    --accent: #ffffff;
    --accent-deep: #ffffff;
    --accent-soft: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --content-width: 1300px;
    --shine-size: 3%; /* adjust this to control shine width */
    --shine-speed: 15s; /* total cycle time (sweep + pause). Sweep happens in first 40%, rest is pause */
    --shine-delay: 5s; /* delay before first shine */
    --category-gap: 2px; /* adjust gap between category items */
    --tool-thumbnail-ratio: 16 / 9;
    --price-filter-active-opacity: 1;
    --price-filter-inactive-opacity: 0.5;
    --price-filter-state-transition: opacity 0.18s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: #101010;
    color: var(--text);
    font-family: "Geist Mono", monospace;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Geist", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at top, black, transparent 78%);
    pointer-events: none;
    opacity: 0.2;
}

img {
    display: block;
}

a,
button,
input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

input {
    color: inherit;
}

[hidden] {
    display: none !important;
}

.page-shell {
    position: relative;
    padding: 24px;
}

.update-notification {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 100;
    max-width: min(1000px, calc(100vw - 32px));
    padding: 20px 24px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    background: rgba(13, 13, 13, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 48px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    color: var(--text);
    backdrop-filter: blur(18px);
    animation: notice-slide-up var(--update-notification-duration, 0.2s) ease-out both;
    overflow: visible;
}

.update-notification-close {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 24px;
    height: 24px;
    border: 1px solid #494949;
    border-radius: 50%;
    background: rgba(49,49,49);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
    transition: background 0.2s ease, transform 0.2s ease;
}

.update-notification-close:hover,
.update-notification-close:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.update-notification-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ff0000;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 400;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.update-notification-copy {
    display: grid;
    gap: 6px;
}

.update-notification-eyebrow {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 200;
    font-size: 1rem;
        font-family: 'giest', sans-serif;
}

.update-notification-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
}

.update-notification-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    min-width: 120px;
    padding: 0 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    color: #070707;
    font-size: 0.82rem;
    font-weight: 200;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.update-notification-action:hover,
.update-notification-action:focus-visible {
    background: #f4f4f4;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.update-notification-hidden {
    opacity: 0;
    transform: translate3d(-12px, 0, 0);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

@keyframes notice-slide-up {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 640px) {
    .update-notification {
        left: 16px;
        right: 16px;
        bottom: 16px;
        border-radius: 24px;
        max-width: auto;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .update-notification-action {
        width: 100%;
        justify-self: stretch;
    }
}

.site-header,
.hero,
.divider-strip,
.catalog-section,
.submit-strip,
.site-footer {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 8px;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 56px;
    background: rgba(13, 13, 13, 0.84);
    backdrop-filter: blur(20px);
    box-shadow: none;
    overflow: visible;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}


@property --shimmer-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes shimmer-rotate {
    from { --shimmer-angle: 0deg; }
    to   { --shimmer-angle: 360deg; }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    height: 24px;
    flex-shrink: 0;
}

.brand-copy {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.site-nav a {
color: rgba(255, 255, 255, 0.7);
    font-weight: 200;
    font-size: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 18px;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 40;
    display: grid;
    min-width: 190px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(13, 13, 13, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-collections-dropdown::after {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: 48px;
}

.nav-collections-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    width: min(900px, calc(100vw - 64px));
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(72px, 12vw, 180px);
    row-gap: 8px;
    padding: 42px 48px;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 48%),
        rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(56px) brightness(0.42) saturate(70%);
    -webkit-backdrop-filter: blur(56px) brightness(0.42) saturate(70%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.nav-dropdown:hover .nav-collections-menu,
.nav-dropdown:focus-within .nav-collections-menu {
    transform: translate(-50%, 0);
}

.nav-collections-menu a.nav-collection-link {
    min-height: 46px;
    padding: 0;
    gap: 8px;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Geist Mono", monospace;
    font-size: 0.8rem;
    font-weight: 200;
    letter-spacing: 0.02em;
}

.nav-collections-menu a.nav-collection-link:hover,
.nav-collections-menu a.nav-collection-link:focus-visible {
    background: transparent;
    color: #ffffff;
    transform: translateX(4px);
}

.nav-collection-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.5);
}

.nav-collection-icon::before,
.nav-collection-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.nav-icon-sparkles::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M352 64C352 46.3 337.7 32 320 32C302.3 32 288 46.3 288 64L288 128L192 128C139 128 96 171 96 224L96 448C96 501 139 544 192 544L448 544C501 544 544 501 544 448L544 224C544 171 501 128 448 128L352 128L352 64zM160 432C160 418.7 170.7 408 184 408L216 408C229.3 408 240 418.7 240 432C240 445.3 229.3 456 216 456L184 456C170.7 456 160 445.3 160 432zM280 432C280 418.7 290.7 408 304 408L336 408C349.3 408 360 418.7 360 432C360 445.3 349.3 456 336 456L304 456C290.7 456 280 445.3 280 432zM400 432C400 418.7 410.7 408 424 408L456 408C469.3 408 480 418.7 480 432C480 445.3 469.3 456 456 456L424 456C410.7 456 400 445.3 400 432zM224 240C250.5 240 272 261.5 272 288C272 314.5 250.5 336 224 336C197.5 336 176 314.5 176 288C176 261.5 197.5 240 224 240zM368 288C368 261.5 389.5 240 416 240C442.5 240 464 261.5 464 288C464 314.5 442.5 336 416 336C389.5 336 368 314.5 368 288zM64 288C64 270.3 49.7 256 32 256C14.3 256 0 270.3 0 288L0 384C0 401.7 14.3 416 32 416C49.7 416 64 401.7 64 384L64 288zM608 256C590.3 256 576 270.3 576 288L576 384C576 401.7 590.3 416 608 416C625.7 416 640 401.7 640 384L640 288C640 270.3 625.7 256 608 256z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M352 64C352 46.3 337.7 32 320 32C302.3 32 288 46.3 288 64L288 128L192 128C139 128 96 171 96 224L96 448C96 501 139 544 192 544L448 544C501 544 544 501 544 448L544 224C544 171 501 128 448 128L352 128L352 64zM160 432C160 418.7 170.7 408 184 408L216 408C229.3 408 240 418.7 240 432C240 445.3 229.3 456 216 456L184 456C170.7 456 160 445.3 160 432zM280 432C280 418.7 290.7 408 304 408L336 408C349.3 408 360 418.7 360 432C360 445.3 349.3 456 336 456L304 456C290.7 456 280 445.3 280 432zM400 432C400 418.7 410.7 408 424 408L456 408C469.3 408 480 418.7 480 432C480 445.3 469.3 456 456 456L424 456C410.7 456 400 445.3 400 432zM224 240C250.5 240 272 261.5 272 288C272 314.5 250.5 336 224 336C197.5 336 176 314.5 176 288C176 261.5 197.5 240 224 240zM368 288C368 261.5 389.5 240 416 240C442.5 240 464 261.5 464 288C464 314.5 442.5 336 416 336C389.5 336 368 314.5 368 288zM64 288C64 270.3 49.7 256 32 256C14.3 256 0 270.3 0 288L0 384C0 401.7 14.3 416 32 416C49.7 416 64 401.7 64 384L64 288zM608 256C590.3 256 576 270.3 576 288L576 384C576 401.7 590.3 416 608 416C625.7 416 640 401.7 640 384L640 288C640 270.3 625.7 256 608 256z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-sparkles::after {
    display: none;
}

.nav-icon-learning::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M80 259.8L289.2 345.9C299 349.9 309.4 352 320 352C330.6 352 341 349.9 350.8 345.9L593.2 246.1C602.2 242.4 608 233.7 608 224C608 214.3 602.2 205.6 593.2 201.9L350.8 102.1C341 98.1 330.6 96 320 96C309.4 96 299 98.1 289.2 102.1L46.8 201.9C37.8 205.6 32 214.3 32 224L32 520C32 533.3 42.7 544 56 544C69.3 544 80 533.3 80 520L80 259.8zM128 331.5L128 448C128 501 214 544 320 544C426 544 512 501 512 448L512 331.4L369.1 390.3C353.5 396.7 336.9 400 320 400C303.1 400 286.5 396.7 270.9 390.3L128 331.4z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M80 259.8L289.2 345.9C299 349.9 309.4 352 320 352C330.6 352 341 349.9 350.8 345.9L593.2 246.1C602.2 242.4 608 233.7 608 224C608 214.3 602.2 205.6 593.2 201.9L350.8 102.1C341 98.1 330.6 96 320 96C309.4 96 299 98.1 289.2 102.1L46.8 201.9C37.8 205.6 32 214.3 32 224L32 520C32 533.3 42.7 544 56 544C69.3 544 80 533.3 80 520L80 259.8zM128 331.5L128 448C128 501 214 544 320 544C426 544 512 501 512 448L512 331.4L369.1 390.3C353.5 396.7 336.9 400 320 400C303.1 400 286.5 396.7 270.9 390.3L128 331.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-learning::after {
    display: none;
}

.nav-icon-grid::before {
    inset: 2px;
    background:
        linear-gradient(currentColor 0 0) 0 0 / 10px 10px,
        linear-gradient(currentColor 0 0) 16px 0 / 10px 10px,
        linear-gradient(currentColor 0 0) 0 16px / 10px 10px,
        linear-gradient(currentColor 0 0) 16px 16px / 10px 10px;
    background-repeat: no-repeat;
}

.nav-icon-bolt::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M434.8 54.1C446.7 62.7 451.1 78.3 445.7 91.9L367.3 288L512 288C525.5 288 537.5 296.4 542.1 309.1C546.7 321.8 542.8 336 532.5 344.6L244.5 584.6C233.2 594 217.1 594.5 205.2 585.9C193.3 577.3 188.9 561.7 194.3 548.1L272.7 352L128 352C114.5 352 102.5 343.6 97.9 330.9C93.3 318.2 97.2 304 107.5 295.4L395.5 55.4C406.8 46 422.9 45.5 434.8 54.1z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M434.8 54.1C446.7 62.7 451.1 78.3 445.7 91.9L367.3 288L512 288C525.5 288 537.5 296.4 542.1 309.1C546.7 321.8 542.8 336 532.5 344.6L244.5 584.6C233.2 594 217.1 594.5 205.2 585.9C193.3 577.3 188.9 561.7 194.3 548.1L272.7 352L128 352C114.5 352 102.5 343.6 97.9 330.9C93.3 318.2 97.2 304 107.5 295.4L395.5 55.4C406.8 46 422.9 45.5 434.8 54.1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-star::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M341.5 45.1C337.4 37.1 329.1 32 320.1 32C311.1 32 302.8 37.1 298.7 45.1L225.1 189.3L65.2 214.7C56.3 216.1 48.9 222.4 46.1 231C43.3 239.6 45.6 249 51.9 255.4L166.3 369.9L141.1 529.8C139.7 538.7 143.4 547.7 150.7 553C158 558.3 167.6 559.1 175.7 555L320.1 481.6L464.4 555C472.4 559.1 482.1 558.3 489.4 553C496.7 547.7 500.4 538.8 499 529.8L473.7 369.9L588.1 255.4C594.5 249 596.7 239.6 593.9 231C591.1 222.4 583.8 216.1 574.8 214.7L415 189.3L341.5 45.1z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M341.5 45.1C337.4 37.1 329.1 32 320.1 32C311.1 32 302.8 37.1 298.7 45.1L225.1 189.3L65.2 214.7C56.3 216.1 48.9 222.4 46.1 231C43.3 239.6 45.6 249 51.9 255.4L166.3 369.9L141.1 529.8C139.7 538.7 143.4 547.7 150.7 553C158 558.3 167.6 559.1 175.7 555L320.1 481.6L464.4 555C472.4 559.1 482.1 558.3 489.4 553C496.7 547.7 500.4 538.8 499 529.8L473.7 369.9L588.1 255.4C594.5 249 596.7 239.6 593.9 231C591.1 222.4 583.8 216.1 574.8 214.7L415 189.3L341.5 45.1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-community::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M320 80C377.4 80 424 126.6 424 184C424 241.4 377.4 288 320 288C262.6 288 216 241.4 216 184C216 126.6 262.6 80 320 80zM96 152C135.8 152 168 184.2 168 224C168 263.8 135.8 296 96 296C56.2 296 24 263.8 24 224C24 184.2 56.2 152 96 152zM0 480C0 409.3 57.3 352 128 352C140.8 352 153.2 353.9 164.9 357.4C132 394.2 112 442.8 112 496L112 512C112 523.4 114.4 534.2 118.7 544L32 544C14.3 544 0 529.7 0 512L0 480zM521.3 544C525.6 534.2 528 523.4 528 512L528 496C528 442.8 508 394.2 475.1 357.4C486.8 353.9 499.2 352 512 352C582.7 352 640 409.3 640 480L640 512C640 529.7 625.7 544 608 544L521.3 544zM472 224C472 184.2 504.2 152 544 152C583.8 152 616 184.2 616 224C616 263.8 583.8 296 544 296C504.2 296 472 263.8 472 224zM160 496C160 407.6 231.6 336 320 336C408.4 336 480 407.6 480 496L480 512C480 529.7 465.7 544 448 544L192 544C174.3 544 160 529.7 160 512L160 496z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M320 80C377.4 80 424 126.6 424 184C424 241.4 377.4 288 320 288C262.6 288 216 241.4 216 184C216 126.6 262.6 80 320 80zM96 152C135.8 152 168 184.2 168 224C168 263.8 135.8 296 96 296C56.2 296 24 263.8 24 224C24 184.2 56.2 152 96 152zM0 480C0 409.3 57.3 352 128 352C140.8 352 153.2 353.9 164.9 357.4C132 394.2 112 442.8 112 496L112 512C112 523.4 114.4 534.2 118.7 544L32 544C14.3 544 0 529.7 0 512L0 480zM521.3 544C525.6 534.2 528 523.4 528 512L528 496C528 442.8 508 394.2 475.1 357.4C486.8 353.9 499.2 352 512 352C582.7 352 640 409.3 640 480L640 512C640 529.7 625.7 544 608 544L521.3 544zM472 224C472 184.2 504.2 152 544 152C583.8 152 616 184.2 616 224C616 263.8 583.8 296 544 296C504.2 296 472 263.8 472 224zM160 496C160 407.6 231.6 336 320 336C408.4 336 480 407.6 480 496L480 512C480 529.7 465.7 544 448 544L192 544C174.3 544 160 529.7 160 512L160 496z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-community::after {
    display: none;
}

.nav-icon-monitor::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M142 159.8C142 106.9 184.9 64 237.8 64L402.2 64C455.1 64 498 106.9 498 159.8C498 193.3 480.8 222.8 454.8 239.9C480.8 257 498 286.5 498 320C498 372.9 455.1 415.8 402.2 415.8L400.1 415.8C375.3 415.8 352.7 406.4 335.7 390.9L335.7 479.2C335.7 532.8 291.7 576 238.3 576C185.5 576 142 533.2 142 480.2C142 446.7 159.2 417.2 185.2 400.1C159.2 383 142 353.5 142 320C142 286.5 159.2 257 185.2 239.9C159.2 222.8 142 193.3 142 159.8zM304.3 255.6L237.8 255.6C202.2 255.6 173.4 284.4 173.4 320C173.4 355.4 202 384.2 237.4 384.4L304.3 384.4L304.3 255.6zM335.7 320C335.7 355.6 364.5 384.4 400.1 384.4L402.2 384.4C437.8 384.4 466.6 355.6 466.6 320C466.6 284.4 437.8 255.6 402.2 255.6L400.1 255.6C364.5 255.6 335.7 284.4 335.7 320zM237.8 415.8L237.4 415.8C202 416 173.4 444.8 173.4 480.2C173.4 515.6 202.6 544.6 238.3 544.6C274.6 544.6 304.3 515.2 304.3 479.1L304.3 415.7L237.8 415.7zM237.8 95.4C202.2 95.4 173.4 124.2 173.4 159.8C173.4 195.4 202.2 224.2 237.8 224.2L304.3 224.2L304.3 95.4L237.8 95.4zM335.7 224.2L402.2 224.2C437.8 224.2 466.6 195.4 466.6 159.8C466.6 124.2 437.8 95.4 402.2 95.4L335.7 95.4L335.7 224.2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M142 159.8C142 106.9 184.9 64 237.8 64L402.2 64C455.1 64 498 106.9 498 159.8C498 193.3 480.8 222.8 454.8 239.9C480.8 257 498 286.5 498 320C498 372.9 455.1 415.8 402.2 415.8L400.1 415.8C375.3 415.8 352.7 406.4 335.7 390.9L335.7 479.2C335.7 532.8 291.7 576 238.3 576C185.5 576 142 533.2 142 480.2C142 446.7 159.2 417.2 185.2 400.1C159.2 383 142 353.5 142 320C142 286.5 159.2 257 185.2 239.9C159.2 222.8 142 193.3 142 159.8zM304.3 255.6L237.8 255.6C202.2 255.6 173.4 284.4 173.4 320C173.4 355.4 202 384.2 237.4 384.4L304.3 384.4L304.3 255.6zM335.7 320C335.7 355.6 364.5 384.4 400.1 384.4L402.2 384.4C437.8 384.4 466.6 355.6 466.6 320C466.6 284.4 437.8 255.6 402.2 255.6L400.1 255.6C364.5 255.6 335.7 284.4 335.7 320zM237.8 415.8L237.4 415.8C202 416 173.4 444.8 173.4 480.2C173.4 515.6 202.6 544.6 238.3 544.6C274.6 544.6 304.3 515.2 304.3 479.1L304.3 415.7L237.8 415.7zM237.8 95.4C202.2 95.4 173.4 124.2 173.4 159.8C173.4 195.4 202.2 224.2 237.8 224.2L304.3 224.2L304.3 95.4L237.8 95.4zM335.7 224.2L402.2 224.2C437.8 224.2 466.6 195.4 466.6 159.8C466.6 124.2 437.8 95.4 402.2 95.4L335.7 95.4L335.7 224.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-monitor::after {
    display: none;
}

.nav-icon-newspaper::before {
    inset: 2px;
    border: 3px solid currentColor;
    border-radius: 2px;
}

.nav-icon-newspaper::after {
    left: 8px;
    top: 9px;
    width: 12px;
    height: 3px;
    background: currentColor;
    box-shadow: 0 7px 0 currentColor;
}

.nav-icon-web::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M640 128L435.8 527.2L244 527.2L329.5 361.7L325.7 361.7C255.1 453.3 149.9 513.5 0 527.2L0 364.1C0 364.1 95.9 358.4 152.3 299.2L0 299.2L0 128L171.1 128L171.1 268.8L174.9 268.8L244.9 128L374.3 128L374.3 267.9L378.1 267.9L450.7 128L640 128z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M640 128L435.8 527.2L244 527.2L329.5 361.7L325.7 361.7C255.1 453.3 149.9 513.5 0 527.2L0 364.1C0 364.1 95.9 358.4 152.3 299.2L0 299.2L0 128L171.1 128L171.1 268.8L174.9 268.8L244.9 128L374.3 128L374.3 267.9L378.1 267.9L450.7 128L640 128z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-palette::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M64 128C64 92.7 92.7 64 128 64L416 64C451.3 64 480 92.7 480 128L496 128C540.2 128 576 163.8 576 208L576 304C576 348.2 540.2 384 496 384L336 384C327.2 384 320 391.2 320 400L320 418.7C338.6 425.3 352 443.1 352 464L352 560C352 586.5 330.5 608 304 608L272 608C245.5 608 224 586.5 224 560L224 464C224 443.1 237.4 425.3 256 418.7L256 400C256 355.8 291.8 320 336 320L496 320C504.8 320 512 312.8 512 304L512 208C512 199.2 504.8 192 496 192L480 192C480 227.3 451.3 256 416 256L128 256C92.7 256 64 227.3 64 192L64 128z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M64 128C64 92.7 92.7 64 128 64L416 64C451.3 64 480 92.7 480 128L496 128C540.2 128 576 163.8 576 208L576 304C576 348.2 540.2 384 496 384L336 384C327.2 384 320 391.2 320 400L320 418.7C338.6 425.3 352 443.1 352 464L352 560C352 586.5 330.5 608 304 608L272 608C245.5 608 224 586.5 224 560L224 464C224 443.1 237.4 425.3 256 418.7L256 400C256 355.8 291.8 320 336 320L496 320C504.8 320 512 312.8 512 304L512 208C512 199.2 504.8 192 496 192L480 192C480 227.3 451.3 256 416 256L128 256C92.7 256 64 227.3 64 192L64 128z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-palette::after {
    display: none;
}

.nav-icon-briefcase::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M320.2 176C364.4 176 400.2 140.2 400.2 96L453.7 96C470.7 96 487 102.7 499 114.7L617.6 233.4C630.1 245.9 630.1 266.2 617.6 278.7L566.9 329.4C554.4 341.9 534.1 341.9 521.6 329.4L480.2 288L480.2 512C480.2 547.3 451.5 576 416.2 576L224.2 576C188.9 576 160.2 547.3 160.2 512L160.2 288L118.8 329.4C106.3 341.9 86 341.9 73.5 329.4L22.9 278.6C10.4 266.1 10.4 245.8 22.9 233.3L141.5 114.7C153.5 102.7 169.8 96 186.8 96L240.3 96C240.3 140.2 276.1 176 320.3 176z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M320.2 176C364.4 176 400.2 140.2 400.2 96L453.7 96C470.7 96 487 102.7 499 114.7L617.6 233.4C630.1 245.9 630.1 266.2 617.6 278.7L566.9 329.4C554.4 341.9 534.1 341.9 521.6 329.4L480.2 288L480.2 512C480.2 547.3 451.5 576 416.2 576L224.2 576C188.9 576 160.2 547.3 160.2 512L160.2 288L118.8 329.4C106.3 341.9 86 341.9 73.5 329.4L22.9 278.6C10.4 266.1 10.4 245.8 22.9 233.3L141.5 114.7C153.5 102.7 169.8 96 186.8 96L240.3 96C240.3 140.2 276.1 176 320.3 176z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-briefcase::after {
    display: none;
}

.nav-icon-book::before {
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M192 576L512 576C529.7 576 544 561.7 544 544C544 526.3 529.7 512 512 512L512 445.3C530.6 438.7 544 420.9 544 400L544 112C544 85.5 522.5 64 496 64L448 64L448 233.4C448 245.9 437.9 256 425.4 256C419.4 256 413.6 253.6 409.4 249.4L368 208L326.6 249.4C322.4 253.6 316.6 256 310.6 256C298.1 256 288 245.9 288 233.4L288 64L192 64C139 64 96 107 96 160L96 480C96 533 139 576 192 576zM160 480C160 462.3 174.3 448 192 448L448 448L448 512L192 512C174.3 512 160 497.7 160 480z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M192 576L512 576C529.7 576 544 561.7 544 544C544 526.3 529.7 512 512 512L512 445.3C530.6 438.7 544 420.9 544 400L544 112C544 85.5 522.5 64 496 64L448 64L448 233.4C448 245.9 437.9 256 425.4 256C419.4 256 413.6 253.6 409.4 249.4L368 208L326.6 249.4C322.4 253.6 316.6 256 310.6 256C298.1 256 288 245.9 288 233.4L288 64L192 64C139 64 96 107 96 160L96 480C96 533 139 576 192 576zM160 480C160 462.3 174.3 448 192 448L448 448L448 512L192 512C174.3 512 160 497.7 160 480z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-icon-web::after {
    display: none;
}

.site-nav a.nav-waitlist-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 200;
    font-size: 12px;
    letter-spacing: 0;
    white-space: nowrap;
}

.site-nav a.nav-waitlist-button:hover,
.site-nav a.nav-waitlist-button:focus-visible {
    color: #ffffff;
}

.glass-button,
.secondary-button,
.proof-chip,
.mini-pill,
.tag,
.price-badge {
    border: 1px solid var(--border);
}

.glass-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 300;
    font-size: 14px;
    backdrop-filter: blur(18px);
}

.button-arrow {
    font-size: 0.88rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 700px;
    padding: 44px;
    border: none;
    border-radius: var(--radius-xl);
    background: transparent;
    box-shadow: none;
}

/* ── Floating header icons ── */
.hero-float-icon {
    position: absolute;
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 16px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    animation: hero-float 3s ease-in-out infinite;
}

/* Adjust top / left / right / bottom to reposition each icon */
.hero-float-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hero-float-2 {
    top: 15%;
    right: 8%;
    animation-delay: 1s;
}

.hero-float-3 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.hero-float-4 {
    top: 55%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero::before,
.hero::after {
    display: none;
}

.hero-glow {
    display: none;
}

/* ── Orbiting stars ── */
.stars-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.star-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    animation: orbit-spin linear infinite;
    will-change: transform;
}

.star {
    position: absolute;
    top: 0;
    left: 50%;
    border-radius: 50%;
    background: #fff;
}

@keyframes orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1060px, 100%);
    margin: 0 auto;
    padding: 106px 0 32px;
    text-align: center;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 6px 16px 6px 6px;
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    border: none;
}

.hero-note::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 48px;
    padding: 1px;
    background: linear-gradient(30deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-note-text {
    font-family: "Geist Mono", monospace;
    font-size: 0.7rem;
    font-weight: 200;
    letter-spacing: -0.03em;
    color: var(--text);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 7px;
}

.badge-pill,
.section-kicker,
.summary-label,
.toolbar-label,
.filter-label,
.filter-title {
    font-weight: 300;
    opacity: 0.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-pill {
    color: var(--text);
    font-size: 0.75rem;
}

.hero h1,
.section-copy h2,
.submit-copy h2 {
    font-family: "Geist", sans-serif;
    letter-spacing: -0.08em;
    line-height: 0.98;
    margin: 0;
}

.hero h1 {
    margin-top: 48px;
    font-size: clamp(3.4rem, 7vw, 6rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.5);
    background: radial-gradient(
        circle 200px at var(--mouse-x, -200px) var(--mouse-y, -200px),
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.5) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rise-in 0.1s ease both;
}

.hero-copy,
.section-copy p,
.submit-copy p,
.resource-card p,
.divider-strip p,
.site-footer p {
    color: rgb(255, 255, 255, 50%);
}

.hero-copy {
    max-width: none;
    margin: 48px auto 0;
    font-size: 1.05rem;
    font-weight: 200;
}

.hero-actions {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.hero-category-search-trigger {
    --search-shimmer-opacity: 0.7;
    --search-shimmer-speed: 5s;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 80%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.68);
    color: rgba(255, 255, 255, 0.3);
    font-family: "Geist", sans-serif;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1;
    z-index: 1;
    text-align: left;
    -webkit-backdrop-filter: blur(42px) saturate(120%);
    backdrop-filter: blur(42px) saturate(120%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 80px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hero-category-search-trigger::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: rgba(10, 10, 10, 0.42);
    pointer-events: none;
}

.hero-category-search-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 36%,
        rgba(255, 255, 255, calc(var(--search-shimmer-opacity) * 0.14)) 43%,
        rgba(255, 255, 255, var(--search-shimmer-opacity)) 50%,
        rgba(255, 255, 255, calc(var(--search-shimmer-opacity) * 0.14)) 57%,
        transparent 64%,
        transparent 100%
    );
    background-size: 240% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: hero-search-border-shimmer var(--search-shimmer-speed) linear infinite;
}

@keyframes hero-search-border-shimmer {
    from {
        background-position: 180% 0;
    }

    to {
        background-position: -180% 0;
    }
}

.hero-category-search-trigger:hover,
.hero-category-search-trigger:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(22, 22, 22, 0.72);
    color: rgba(255, 255, 255, 0.82);
    outline: none;
    transform: translateY(-1px);
}

.hero-category-search-trigger kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
    font-family: "Geist", sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.hero-waitlist-button {
    --waitlist-shimmer-speed: 4s;
    --waitlist-shimmer-opacity: 1;
    position: relative;
    min-width: 260px;
    border: 1px solid #ffffff50;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 48px;
    text-transform: uppercase;
    overflow: hidden;
}

.hero-waitlist-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 38%,
        rgba(255, 255, 255, calc(var(--waitlist-shimmer-opacity) * 0.18)) 44%,
        rgba(255, 255, 255, var(--waitlist-shimmer-opacity)) 50%,
        rgba(255, 255, 255, calc(var(--waitlist-shimmer-opacity) * 0.18)) 56%,
        transparent 62%,
        transparent 100%
    );
    background-size: 220% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: waitlist-border-shimmer var(--waitlist-shimmer-speed) linear infinite;
}

@keyframes waitlist-border-shimmer {
    from {
        background-position: 180% 0;
    }

    to {
        background-position: -180% 0;
    }
}

.hero-email-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 34px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.hero-email-form::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    color: #ffffff30;
    background: conic-gradient(
        from var(--shimmer-angle, 0deg),
        transparent 0%,
        transparent 70%,
        rgba(255, 255, 255, 0.3) 76%,
        rgba(255, 255, 255, 0.7) 80%,
        rgba(255, 255, 255, 0.3) 84%,
        transparent 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: shimmer-rotate 3s linear infinite;
}

.hero-email-input {
    flex: 1;
    padding: 10px 18px;
    background: transparent;
    border: none;
    outline: none;
    font-family: "Geist Mono";
    font-size: 0.95rem;
    font-weight: 300;
}

.hero-email-input::placeholder {
    color: var(--muted);
}

.hero-email-form .primary-button {
    flex-shrink: 0;
    border-radius: 44px;
    background: #ffffff;
    color: #000000;
    border: none;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    border-radius: 44px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.secondary-button {
    color: var(--muted-strong);
}

body.waitlist-modal-open {
    overflow: hidden;
}

.waitlist-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.waitlist-modal[hidden] {
    display: none !important;
}

.waitlist-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 4, 0.3);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(8px);
}

.waitlist-modal-card {
    --waitlist-modal-shimmer-speed: 6s;
    --waitlist-modal-shimmer-opacity: 0.65;
    --waitlist-modal-padding: 24px;
    --waitlist-modal-padding-negative: -56px;
    --waitlist-modal-width: 720px;
    --waitlist-modal-image-ratio: 16 / 7;
    --waitlist-modal-title-size: clamp(2.5rem, 8vw, 3.3rem);
    --waitlist-modal-copy-size: 0.875rem;
    --waitlist-modal-field-padding: 14px 16px;
    --waitlist-modal-button-padding: 14px 20px;
    position: relative;
    z-index: 1;
    width: min(100%, var(--waitlist-modal-width));
    max-height: calc(100dvh - 48px);
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(18, 18, 18, 0.96);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 0 var(--waitlist-modal-padding) var(--waitlist-modal-padding);
}

.waitlist-modal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, calc(var(--waitlist-modal-shimmer-opacity) * 0.2)) 46%,
        rgba(255, 255, 255, var(--waitlist-modal-shimmer-opacity)) 50%,
        rgba(255, 255, 255, calc(var(--waitlist-modal-shimmer-opacity) * 0.2)) 54%,
        transparent 60%,
        transparent 100%
    );
    background-size: 240% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: waitlist-modal-border-shimmer var(--waitlist-modal-shimmer-speed) linear infinite;
}

@keyframes waitlist-modal-border-shimmer {
    from {
        background-position: 180% 0;
    }

    to {
        background-position: -180% 0;
    }
}

.waitlist-modal-image {
    width: 120%;
    max-width: none;
    aspect-ratio: var(--waitlist-modal-image-ratio);
    object-fit: cover;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    margin: 0 var(--waitlist-modal-padding-negative) 32px;
}

.waitlist-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffffbd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1;
}

.waitlist-modal-kicker {
    margin: 10px 44px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--waitlist-modal-copy-size);
    font-weight: 200;
    letter-spacing: 0;
}

.waitlist-modal-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: var(--waitlist-modal-title-size);
    font-weight: 200;
    letter-spacing: -0.15rem;
    line-height: 1.05;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.waitlist-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.waitlist-field span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.waitlist-email-input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    outline: none;
    padding: var(--waitlist-modal-field-padding);
    font-size: 0.95rem;
}

.waitlist-email-input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.waitlist-email-input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.waitlist-submit-button {
    width: 100%;
    border: none;
    background: #ffffff;
    color: #000000;
    padding: var(--waitlist-modal-button-padding);
    text-transform: uppercase;
}

.waitlist-route-page {
    background: #080808;
}

.waitlist-route-shell {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
}

.waitlist-route-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.11), transparent 32%),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 80px 80px, 80px 80px;
    opacity: 0.55;
}

.waitlist-route-brand {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
}

.waitlist-route-brand img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.waitlist-route-copy {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.42);
    font-family: "Geist", sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 200;
    line-height: 0.95;
    text-align: right;
}

.waitlist-route-copy p {
    margin: 0;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.proof-chip,
.mini-pill,
.tag,
.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.proof-chip,
.mini-pill,
.tag {
    padding: 10px 14px;
    color: var(--muted-strong);
    font-size: 0.85rem;
}

.floating-tile,
.role-tag {
    position: absolute;
    z-index: 1;
    animation: bob 6s ease-in-out infinite;
}

.floating-tile {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8efe5, #d9d0c5);
    color: #141414;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.role-tag {
    padding: 8px 12px;
    border-radius: 12px 12px 12px 4px;
    background: var(--accent);
    color: #fff5ee;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(255, 116, 77, 0.28);
}

.tile-dribbble {
    top: 140px;
    left: 84px;
}

.tile-ai {
    top: 142px;
    right: 86px;
    animation-delay: -1.5s;
}

.tile-grid {
    bottom: 120px;
    left: 246px;
    animation-delay: -2.5s;
}

.tile-motion {
    bottom: 122px;
    right: 246px;
    animation-delay: -0.8s;
}

.tag-ui {
    top: 235px;
    left: 228px;
}

.tag-ux {
    top: 406px;
    left: 326px;
    animation-delay: -2s;
}

.tag-web {
    top: 328px;
    left: 194px;
    animation-delay: -1s;
}

.tag-video {
    top: 238px;
    right: 236px;
    animation-delay: -1.6s;
}

.tag-visual {
    top: 408px;
    right: 294px;
    animation-delay: -2.8s;
}

.tag-illustration {
    top: 336px;
    right: 162px;
    animation-delay: -0.7s;
}

.divider-strip {
    padding: 0 24px 8px;
    text-align: center;
}

.divider-strip p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.logo-marquee {
    overflow: hidden;
    margin-top: 24px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.logo-track img {
    height: 24px;
    opacity: 0.5;
    filter: grayscale(1) brightness(2);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Homepage bento ── */
.home-bento-section {
    max-width: var(--content-width);
    margin: 64px auto 0;
}

.home-bento-head {
    max-width: 980px;
    margin: 0 auto 24px;
    text-align: center;
}

.home-bento-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -2px;
}

.home-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 250px;
    grid-template-areas:
        "collections updates figma"
        "scanner updates figma"
        "scanner panel panel";
    gap: 12px;
}

.home-bento-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 0;
    grid-column: span 2;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        #0d0d0d;
    box-shadow: none;
    color: var(--text);
}

.home-bento-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: 180px;
    z-index: 0;
    width: min(72%, 360px);
    aspect-ratio: 1;
    background: url("/public/images/shine.svg") center / contain no-repeat;
    opacity: 0.72;
    pointer-events: none;
}

.bento-card-wide {
    grid-column: span 2;
}

.bento-card-tall {
    grid-row: span 2;
}

.home-bento-card:nth-child(1) {
    grid-area: collections;
}

.home-bento-card:nth-child(2) {
    grid-area: updates;
}

.home-bento-card:nth-child(3) {
    grid-area: figma;
}

.home-bento-card:nth-child(4) {
    grid-area: scanner;
}

.home-bento-card:nth-child(5) {
    grid-area: panel;
}

.bento-visual,
.bento-copy {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.bento-visual {
    flex: 1;
    min-height: 0;
}

.bento-designers-visual {
    display: grid;
    align-items: end;
    padding-top: 0;
}

.bento-designers-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}


.bento-copy h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: 0;
}

.bento-copy p {
    margin: 10px 0 0;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 0.82rem;
    line-height: 1.55;
    letter-spacing: 0;
}

.bento-collection-visual {
    display: grid;
    padding: 0;
    align-content: center;
    gap: 16px;
    width: 100%;
    max-width: 560px;
    margin: auto auto 0;
}

.bento-collection-map {
    position: relative;
    width: min(100%, 540px);
    min-height: 210px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 22px;
}

.bento-collection-map::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 20px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.22;
    mask-image: radial-gradient(circle at 50% 55%, black 0, transparent 68%);
    -webkit-mask-image: radial-gradient(circle at 50% 55%, black 0, transparent 68%);
}

.bento-collection-lines {
    position: absolute;
    inset: 10px 0 0;
    width: 100%;
    height: calc(100% - 10px);
    overflow: visible;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.12));
}

.bento-collection-lines path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.22);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.bento-wallet-hub,
.bento-tool-node {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(28, 28, 28, 0.94);
}

.bento-wallet-hub {
    left: 50%;
    top: 56%;
    width: 96px;
    height: 96px;
    z-index: 2;
    transform: translate(-50%, -38%);
    isolation: isolate;
    overflow: hidden;
    border-color: transparent;
}

.bento-wallet-hub::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--shimmer-angle, 0deg),
        rgba(255, 255, 255, 0.16) 0deg,
        rgba(255, 255, 255, 0.16) 58deg,
        rgba(255, 255, 255, 0.88) 78deg,
        rgba(255, 255, 255, 0.22) 100deg,
        rgba(255, 255, 255, 0.16) 360deg
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: shimmer-rotate 4s linear infinite;
}

.bento-wallet-hub svg {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: block;
    fill: #ffffff;
}

.bento-tool-node {
    width: 58px;
    height: 58px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Geist", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.bento-tool-node img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.node-dribbble {
    background-color: #e74c87;
    left: 6%;
    top: 50%;
}

.node-behance {
    left: 15%;
    top: 18%;
    background-color: #053eff;
}

.node-mobbin {
    left: 43%;
    top: 7%;
    background-color: #ffffff;
}

.node-mobbin img {
    width: 34px;
    height: auto;
}

.node-webflow {
    right: 15%;
    top: 18%;
    background-color: #3070ff;
}

.node-icon {
    right: 5%;
    top: 50%;
    background-color: #1ec6ff;
}

.node-hugicon {
    right: 38%;
    bottom: 6%;
    color: #111111;
    background:
        radial-gradient(circle at 36% 22%, rgba(255, 255, 255, 0.72), transparent 46%),
        #f5f5f5;
}

.bento-search-line {
    width: 72%;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
}

.bento-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bento-chip-row span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
}

.bento-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.bento-logo-card {
    min-height: 96px;
    padding: 14px 10px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 62%),
        rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.bento-logo-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.bento-logo-card strong {
    font-family: "Geist", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.bento-logo-card small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.62rem;
    line-height: 1;
}

.bento-logo-card-behance strong {
    color: #1769ff;
    font-size: 1.6rem;
    font-weight: 700;
}

.bento-logo-card-mobbin strong {
    padding: 7px 10px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 0.82rem;
    font-weight: 700;
}

.bento-logo-card-hugicon strong {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #f8f8f8;
    color: #111111;
    font-size: 1.2rem;
    font-weight: 800;
}

.bento-update-visual {
    display: grid;
    place-items: center;
    align-content: center;
    isolation: isolate;
}

.bento-update-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 18px 0 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 1;
    mask-image: radial-gradient(circle at center, rgb(0 0 0 / 100%) 0%, rgb(0 0 0 / 100%) 34%, rgb(0 0 0 / 0%) 78%);
    -webkit-mask-image: radial-gradient(circle at center, rgb(0 0 0 / 100%) 0%, rgb(0 0 0 / 100%) 34%, rgb(0 0 0 / 0%) 78%);
}

.bento-update-label {
    box-sizing: border-box;
    display: block;
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    color: rgba(255, 255, 255, 0.92);
    font-family: "Geist Mono", monospace;
    font-size: 1rem;
    opacity: 0.5;
    margin-bottom: 16px;
    font-weight: 200;
    letter-spacing: 0.65em;
    line-height: 1;
    text-align: center;
    text-indent: 0.65em;
}

.bento-update-date {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: linear-gradient(
        110deg,
        rgb(77 77 77) 0%,
        rgb(77 77 77) 40%,
        rgb(179, 179, 179) 50%,
        rgba(255, 255, 255, 0.34) 55%,
        rgb(77 77 77) 60%,
        rgb(77 77 77) 100%
    );
    background-size: 240% 100%;
    background-position: 140% 0;
    -webkit-background-clip: text;
    background-clip: text;
    box-shadow: none;
    color: transparent;
    font-family: "Geist", sans-serif;
    font-size: 6rem;
    font-weight: 100;
    letter-spacing: -0.3rem;
    line-height: 0.86;
    text-align: center;
    text-shadow: none;
    white-space: normal;
    animation: bento-update-text-shimmer 5s linear infinite;
    -webkit-text-fill-color: transparent;
}

@keyframes bento-update-text-shimmer {
    to {
        background-position: -140% 0;
    }
}


.bento-figma-visual {
    position: relative;
    min-height: 330px;
    display: grid;
    place-items: center;
}

.bento-figma-surface {
    position: relative;
    width: min(100%, 280px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.bento-figma-bar {
    width: 46%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 16px;
}

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

.bento-figma-grid span {
    min-height: 36px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.bento-figma-dots {
    position: absolute;
    top: 24px;
    right: 18px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}

.bento-cursor-visual {
    display: grid;
    justify-items: center;
    gap: 24px;
}

.bento-scan-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 260px);
}

.bento-scan-strip span {
    min-height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bento-panel-visual {
    max-width: 440px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    display: grid;
    gap: 12px;
}

.bento-panel-preview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bento-panel-preview-row span {
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-panel-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.bento-panel-icons span {
    aspect-ratio: 1;
    border-radius: 10px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.44) 22%, transparent 24%),
        rgba(255, 255, 255, 0.04);
}

.bento-access-visual {
    display: grid;
    align-content: end;
    gap: 10px;
    overflow: visible;
    padding-top: 4px;
}

.bento-access-categories {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 34px;
    overflow: hidden;
    padding-right: 56px;
    mask-image: linear-gradient(to right, black 0, black calc(100% - 96px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 96px), transparent 100%);
}

.bento-access-categories span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.48);
    font-family: "Geist Mono", monospace;
    font-size: 0.68rem;
    font-weight: 300;
    white-space: nowrap;
}

.bento-access-command {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15) 42%, rgba(255, 255, 255, 0.05));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.bento-access-command > span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.bento-access-command strong {
    min-width: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.92rem;
    font-weight: 200;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bento-access-cursor {
    display: inline-block;
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.78);
    font: inherit;
    line-height: 1;
    animation: bento-access-cursor-blink 1s steps(2, start) infinite;
}

@keyframes bento-access-cursor-blink {
    50% {
        opacity: 0;
    }
}

.bento-access-command kbd {
    min-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.68);
    font-family: "Geist Mono", monospace;
    font-size: 0.82rem;
}

.bento-access-results {
    display: grid;
    gap: 8px;
    padding: 0 16px;
}

.bento-access-results span {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.bento-access-results span:nth-child(1) {
    width: 86%;
}

.bento-access-results span:nth-child(2) {
    width: 68%;
}

.bento-access-results span:nth-child(3) {
    width: 42%;
}
.bento-figma-visual::before,
.bento-figma-visual::after {
    content: "";
    position: absolute;
    inset: 30px 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transform: rotate(45deg);
    z-index: -1;
}

.bento-figma-visual::after {
    inset: 96px 68px;
}

.figma-dot {
    position: absolute;
    left: 50%;
    width: 88px;
    height: 88px;
    box-shadow: 0 26px 42px rgba(0, 0, 0, 0.28);
}

.dot-red {
    border-radius: 999px 0 0 999px;
    background: rgba(255, 255, 255, 0.92);
}

.dot-coral {
    border-radius: 0 999px 999px 0;
    background: rgba(255, 255, 255, 0.72);
}

.dot-purple {
    border-radius: 999px 0 0 999px;
    background: rgba(255, 255, 255, 0.5);
}

.dot-blue {
    top: 150px;
    margin-left: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
}

.dot-green {
    top: 150px;
    border-radius: 0 0 999px 999px;
    background: rgb(71 71 71);
}

.bento-cursor-visual {
    display: grid;
    place-items: center;
}

.bento-cursor-shape {
    width: 180px;
    height: 220px;
    border: 18px solid rgba(255, 255, 255, 0.055);
    border-radius: 56% 44% 58% 42%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26) 2px, transparent 3px) 0 0 / 22px 22px,
        rgba(255, 255, 255, 0.035);
    transform: rotate(-28deg);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.bento-panel-visual {
    transform: translateX(24px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.bookmark-browser {
    width: 100%;
    aspect-ratio: 399 / 361;
    overflow: hidden;
    background: #1b1b1b;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Geist", sans-serif;
}

.bookmark-browser-top {
    align-items: center;
    gap: 8px;
    background: #1c1c1c;
}

.browser-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
}

.dot-red {
    background: #ff4b4b;
}

.dot-yellow {
    background: #3d3d3d;
}

.dot-green {
    background: #24c763;
}

.bookmark-browser-toolbar {
    height: 36px;
    display: grid;
    grid-template-columns: 22px 22px 22px 22px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    background: #2f2f2f;
    border-radius: 16px 0 0 0;
}

.browser-arrow {
    width: 15px;
    height: 15px;
    opacity: 0.38;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M201.4 297.4C188.9 309.9 188.9 330.2 201.4 342.7L361.4 502.7C373.9 515.2 394.2 515.2 406.7 502.7C419.2 490.2 419.2 469.9 406.7 457.4L269.3 320L406.6 182.6C419.1 170.1 419.1 149.8 406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3L201.3 297.3z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M201.4 297.4C188.9 309.9 188.9 330.2 201.4 342.7L361.4 502.7C373.9 515.2 394.2 515.2 406.7 502.7C419.2 490.2 419.2 469.9 406.7 457.4L269.3 320L406.6 182.6C419.1 170.1 419.1 149.8 406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3L201.3 297.3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.browser-arrow-forward {
    transform: scaleX(-1);
}

.browser-refresh {
    width: 16px;
    height: 16px;
    opacity: 0.78;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M129.9 292.5C143.2 199.5 223.3 128 320 128C373 128 421 149.5 455.8 184.2C456 184.4 456.2 184.6 456.4 184.8L464 192L416.1 192C398.4 192 384.1 206.3 384.1 224C384.1 241.7 398.4 256 416.1 256L544.1 256C561.8 256 576.1 241.7 576.1 224L576.1 96C576.1 78.3 561.8 64 544.1 64C526.4 64 512.1 78.3 512.1 96L512.1 149.4L500.8 138.7C454.5 92.6 390.5 64 320 64C191 64 84.3 159.4 66.6 283.5C64.1 301 76.2 317.2 93.7 319.7C111.2 322.2 127.4 310 129.9 292.6zM573.4 356.5C575.9 339 563.7 322.8 546.3 320.3C528.9 317.8 512.6 330 510.1 347.4C496.8 440.4 416.7 511.9 320 511.9C267 511.9 219 490.4 184.2 455.7C184 455.5 183.8 455.3 183.6 455.1L176 447.9L223.9 447.9C241.6 447.9 255.9 433.6 255.9 415.9C255.9 398.2 241.6 383.9 223.9 383.9L96 384C87.5 384 79.3 387.4 73.3 393.5C67.3 399.6 63.9 407.7 64 416.3L65 543.3C65.1 561 79.6 575.2 97.3 575C115 574.8 129.2 560.4 129 542.7L128.6 491.2L139.3 501.3C185.6 547.4 249.5 576 320 576C449 576 555.7 480.6 573.4 356.5z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M129.9 292.5C143.2 199.5 223.3 128 320 128C373 128 421 149.5 455.8 184.2C456 184.4 456.2 184.6 456.4 184.8L464 192L416.1 192C398.4 192 384.1 206.3 384.1 224C384.1 241.7 398.4 256 416.1 256L544.1 256C561.8 256 576.1 241.7 576.1 224L576.1 96C576.1 78.3 561.8 64 544.1 64C526.4 64 512.1 78.3 512.1 96L512.1 149.4L500.8 138.7C454.5 92.6 390.5 64 320 64C191 64 84.3 159.4 66.6 283.5C64.1 301 76.2 317.2 93.7 319.7C111.2 322.2 127.4 310 129.9 292.6zM573.4 356.5C575.9 339 563.7 322.8 546.3 320.3C528.9 317.8 512.6 330 510.1 347.4C496.8 440.4 416.7 511.9 320 511.9C267 511.9 219 490.4 184.2 455.7C184 455.5 183.8 455.3 183.6 455.1L176 447.9L223.9 447.9C241.6 447.9 255.9 433.6 255.9 415.9C255.9 398.2 241.6 383.9 223.9 383.9L96 384C87.5 384 79.3 387.4 73.3 393.5C67.3 399.6 63.9 407.7 64 416.3L65 543.3C65.1 561 79.6 575.2 97.3 575C115 574.8 129.2 560.4 129 542.7L128.6 491.2L139.3 501.3C185.6 547.4 249.5 576 320 576C449 576 555.7 480.6 573.4 356.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.browser-home {
    width: 16px;
    height: 16px;
    opacity: 0.72;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M304 70.1C313.1 61.9 326.9 61.9 336 70.1L568 278.1C577.9 286.9 578.7 302.1 569.8 312C560.9 321.9 545.8 322.7 535.9 313.8L527.9 306.6L527.9 511.9C527.9 547.2 499.2 575.9 463.9 575.9L175.9 575.9C140.6 575.9 111.9 547.2 111.9 511.9L111.9 306.6L103.9 313.8C94 322.6 78.9 321.8 70 312C61.1 302.2 62 287 71.8 278.1L304 70.1zM320 120.2L160 263.7L160 512C160 520.8 167.2 528 176 528L224 528L224 424C224 384.2 256.2 352 296 352L344 352C383.8 352 416 384.2 416 424L416 528L464 528C472.8 528 480 520.8 480 512L480 263.7L320 120.3zM272 528L368 528L368 424C368 410.7 357.3 400 344 400L296 400C282.7 400 272 410.7 272 424L272 528z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M304 70.1C313.1 61.9 326.9 61.9 336 70.1L568 278.1C577.9 286.9 578.7 302.1 569.8 312C560.9 321.9 545.8 322.7 535.9 313.8L527.9 306.6L527.9 511.9C527.9 547.2 499.2 575.9 463.9 575.9L175.9 575.9C140.6 575.9 111.9 547.2 111.9 511.9L111.9 306.6L103.9 313.8C94 322.6 78.9 321.8 70 312C61.1 302.2 62 287 71.8 278.1L304 70.1zM320 120.2L160 263.7L160 512C160 520.8 167.2 528 176 528L224 528L224 424C224 384.2 256.2 352 296 352L344 352C383.8 352 416 384.2 416 424L416 528L464 528C472.8 528 480 520.8 480 512L480 263.7L320 120.3zM272 528L368 528L368 424C368 410.7 357.3 400 344 400L296 400C282.7 400 272 410.7 272 424L272 528z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.browser-address {
    min-width: 0;
    height: 28px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border-radius: 999px;
    color: #f2f2f2;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.browser-sliders {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #454545;
}

.browser-sliders::before,
.browser-sliders::after {
    content: "";
    position: absolute;
    left: 7px;
    width: 10px;
    height: 2px;
    background: #d8d8d8;
    border-radius: 999px;
}

.browser-sliders::before {
    top: 8px;
    box-shadow: 4px 4px 0 #d8d8d8;
}

.browser-sliders::after {
    top: 12px;
    box-shadow: -4px -4px 0 #d8d8d8;
}

.bookmark-browser-tabs {
    height: 41px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 8px;
    background: #373737;
    color: rgba(255, 255, 255, 0.82);
}

.browser-grid {
    width: 10px;
    height: 10px;
    background:
        linear-gradient(currentColor 0 0) 0 0 / 6px 6px,
        linear-gradient(currentColor 0 0) 9px 0 / 6px 6px,
        linear-gradient(currentColor 0 0) 0 9px / 6px 6px,
        linear-gradient(currentColor 0 0) 9px 9px / 6px 6px;
    background-repeat: no-repeat;
    opacity: 0.78;
}

.browser-tab-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.28);
}

.browser-tab-icon {
    width: 15px;
    height: 15px;
    display: block;
    object-fit: contain;
}

.browser-tab-title {
    min-width: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bookmark-browser-page {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #0b0b0b;
}

.bookmark-browser-page-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.bento-panel-tabs {
    display: flex;
    gap: 10px;
}

.bento-panel-tabs span {
    width: 72px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.bento-panel-tabs span:first-child {
    background: rgba(255, 255, 255, 0.36);
}

.bento-panel-search {
    height: 44px;
    margin: 18px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.bento-panel-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.bento-panel-icons span {
    aspect-ratio: 1;
    border-radius: 10px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.44) 22%, transparent 24%),
        rgba(255, 255, 255, 0.04);
}

/* ── Homepage category cloud ── */
.home-category-cloud-section {
    max-width: var(--content-width);
    margin: 64px auto 0;
    padding: clamp(36px, 6vw, 72px) 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        #0d0d0d;
    color: var(--text);
    text-align: center;
}

.home-category-cloud-head {
    max-width: 980px;
    margin: 0 auto 56px;
}

.home-category-cloud-head h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -2px;
}

.home-category-cloud-head p {
    max-width: 840px;
    margin: 20px auto 0;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0;
}

.home-category-cloud {
    display: flex;
    max-width: 1120px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.home-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    max-width: 100%;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    box-shadow: none;
    color: var(--text);
    cursor: default;
}

.home-category-pill strong {
    min-width: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-category-pill-count {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
    white-space: nowrap;
}

.home-category-cloud-loading {
    margin: 0;
    color: var(--muted);
}

.home-category-cloud-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 44px;
}

/* ── Homepage testimonials ── */
.home-testimonials-section {
    max-width: var(--content-width);
    margin: 64px auto 0;
}

.home-testimonials-head {
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
    gap: clamp(28px, 6vw, 96px);
    align-items: start;
    margin-bottom: 30px;
}

.home-testimonials-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -2px;
}

.home-testimonials-head > p {
    margin: 34px 0 0;
    color: var(--muted);
    font-family: "Geist Mono", monospace;
    font-size: 0.92rem;
    line-height: 1.7;
}

.home-testimonials-frame {
    position: relative;
    height: 660px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        #0d0d0d;
    mask-image: linear-gradient(to bottom, transparent 0, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 12%, black 88%, transparent 100%);
}

.home-testimonials-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.home-testimonials-grid {
    position: relative;
    z-index: 1;
    column-count: 3;
    column-gap: 8px;
    padding: 44px;
    transform: translateY(-118px);
}

.testimonial-card {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

.testimonial-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-family: "Geist", sans-serif;
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 200;
    letter-spacing: 0;
}

.testimonial-card-tall {
    padding-bottom: 42px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.testimonial-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    display: grid;
    gap: 2px;
}

.testimonial-author strong {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.1;
}

.testimonial-author small {
    color: var(--muted);
    font-size: 0.76rem;
    text-transform: uppercase;
}

/* ── Featured section ── */
.featured-section {
    max-width: var(--content-width);
    margin: 48px auto;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured-card {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.featured-card:hover {
    border-color: var(--border-strong);
}

.featured-card-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    flex: 1;
    justify-content: flex-end;
}

.featured-card-kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    padding: 4px;
    border-radius: 8px;
    gap: 6px;
}

.featured-star-icon {
    width: 14px;
    height: 14px;
    fill: rgb(255 170 0);
    flex-shrink: 0;
    position: relative;
    top: 2.5px;
}

.featured-card-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
}

.featured-card-title {
    font-family: "Geist", sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--text);
    margin-top: 4px;
}

.featured-card-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--muted-strong);
    width: fit-content;
    letter-spacing: 0.02em;
}

.featured-card-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

.featured-card-thumbs {
    display: flex;
    width: 50%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
}

.featured-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-loading {
    color: var(--muted);
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 760px) {
    .featured-card {
        flex-direction: column;
    }

    .featured-card-thumbs {
        flex-wrap: wrap;
        min-height: 160px;
    }

    .featured-card-thumb {
        flex: 1 1 30%;
        min-width: 0;
    }
}

.catalog-section {
    margin-top: 24px;
}

.home-category-entry {
    max-width: var(--content-width);
    margin: 36px auto 0;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.home-category-copy {
    max-width: 720px;
}

.home-category-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 200;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-category-copy p:last-child {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.home-category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.section-copy {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-kicker {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.75rem;
}

.section-copy h2,
.submit-copy h2 {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.section-copy p,
.submit-copy p {
    max-width: 640px;
    margin: 18px auto 0;
}

.catalog-search-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    margin-bottom: 20px;
    padding: 24px 0;
    background: #101010;
    display: flex;
    align-items: center;
    gap: 16px;
}

.catalog-search-bar .search-field {
    flex: 1;
    min-width: 0;
}

.catalog-filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.catalog-shell {
    display: block;
}

.catalog-main {
    height: calc(4 * 230px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: var(--radius-lg);
}

.catalog-main::-webkit-scrollbar {
    display: none;
}

.filter-block + .filter-block {
    margin-top: 26px;
}

.filter-label,
.filter-title,
.summary-label {
    display: block;
    margin: 0 0 12px;
    color: var(--muted-strong);
    font-size: 0.73rem;
}

.search-field {
    border: 1px solid var(--border);
    border-radius: 48px;
    background: rgba(24, 24, 24);
    padding: 12px 14px;
    outline: none;
}


.search-field input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    font-size: 0.85rem;
}

.search-field input:focus {
    outline: none;
    box-shadow: none;
}

.search-field input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
    cursor: pointer;
}

.check-row {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--muted-strong);
    opacity: var(--price-filter-active-opacity);
    cursor: pointer;
    transition: var(--price-filter-state-transition);
}

.check-row[data-price-muted="true"] {
    opacity: var(--price-filter-inactive-opacity);
}

.check-row span {
    position: relative;
    top: 2px;
}

.check-row + .check-row {
    margin-top: 0;
}

.check-row input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

.category-dropdown {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a8a097' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.category-dropdown option {
    background: #1a1a1a;
    color: var(--text);
}

.pricing-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-chip {
    padding: 4px 0;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--muted);
    font-size: 0.8rem;
    border: none;
    background: transparent;
    border-radius: 0;
    transition: color 0.2s ease;
}

.filter-chip.is-active {
    background: transparent;
    border: none;
    color: var(--text);
}

.summary-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.summary-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.summary-card li + li {
    margin-top: 8px;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.toolbar-label {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 0.72rem;
}

#result-count {
    font-family: "Inter", sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.05em;
}

.toolbar-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.catalog-note {
    margin: 0 0 18px;
    color: var(--muted);
}

.catalog-loading {
    margin: 0 0 18px;
    padding: 18px 20px;
    border: 1px dashed var(--border-strong);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted-strong);
}

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

.resource-card {
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.resource-card::before {
    display: none;
}

.resource-card:hover,
.resource-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.resource-card:focus-visible {
    outline: none;
}

.resource-card:hover .card-action,
.resource-card:focus-visible .card-action {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.12);
}

.resource-card:hover .card-action-arrow,
.resource-card:focus-visible .card-action-arrow {
    transform: translate(2px, -2px);
}

.resource-card:focus-visible .card-shell {
    box-shadow: inset 0 0 0 1px rgba(255, 116, 77, 0.36);
}

.card-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    flex: 1;
    padding: 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: #0d0d0d;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-top h3 {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.logo-badge {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ef4f8b, #f2569f);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-badge.has-image {
    overflow: hidden;
    background: #1a1a1a;
}

.logo-badge.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-badge {
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.card-thumb-wrap {
    border-radius: 8px;
    overflow: hidden;
}

.card-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.resource-card h3 {
    font-family: "Geist", sans-serif;
    font-size: clamp(1rem, 1.4vw + 0.9rem, 0.9rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: #f7f4ef;
}

.card-divider {
    height: 1px;
    margin: 18px -16px 16px;
    background: rgba(255, 255, 255, 0.1);
}

.card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: end;
    gap: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #f5f1ea;
    font-size: 0.5rem;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.3rem;
}

.card-action {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.card-action-arrow {
    color: #f5f1ea;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.25s ease;
}


.empty-state {
    margin: 18px 0 0;
    padding: 28px;
    border: 1px dashed var(--border-strong);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    text-align: center;
}

.submit-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 34px;
    border-radius: 32px;
}

.submit-copy {
    max-width: 720px;
}

.submit-copy .section-kicker {
    margin-bottom: 14px;
}

.submit-copy p {
    margin-left: 0;
}

.site-footer {
    max-width: none;
    margin: 64px -24px -24px;
    padding: clamp(42px, 6vw, 76px) 24px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(180deg, #111111, #080808);
}

.footer-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(42px, 7vw, 110px);
    color: var(--muted);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-brand img {
    height: 34px;
    width: auto;
    opacity: 0.84;
    transition: opacity 0.2s ease;
}

.footer-brand:hover img {
    opacity: 1;
}

.footer-about {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.footer-large-copy {
    max-width: 560px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Geist Mono";
    font-weight: 200;
    line-height: 1.18;
    letter-spacing: 0;
}

.footer-note {
    max-width: 620px;
    opacity: 50%;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.7rem;
    line-height: 1.6;
}

.footer-built {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: auto;
    padding-top: 72px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.88rem;
}

.footer-directory {
    display: grid;
    gap: 84px;
    min-width: 0;
}

.footer-group h2 {
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.36);
    font-family: "Geist Mono", monospace;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.footer-category-grid a {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    gap: 12px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    font-weight: 200;
    line-height: 1.2;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-category-grid a:hover,
.footer-category-grid a:focus-visible {
    color: var(--text);
    transform: translateX(2px);
    outline: none;
}

.footer-category-grid svg {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.42);
}

.footer-category-grid span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--text);
}

[data-reveal] {
    animation: rise-in 0.9s ease both;
}

.hero-note {
    animation-delay: 0.05s;
}

.hero h1 {
    animation-delay: 0.01s;
}

.hero-copy {
    animation-delay: 0.2s;
}

.hero-actions {
    animation-delay: 0.28s;
}

.hero-proof {
    animation-delay: 0.36s;
}

.resource-card:nth-child(1) {
    animation-delay: 0.03s;
}

.resource-card:nth-child(2) {
    animation-delay: 0.07s;
}

.resource-card:nth-child(3) {
    animation-delay: 0.11s;
}

.resource-card:nth-child(4) {
    animation-delay: 0.15s;
}

.resource-card:nth-child(5) {
    animation-delay: 0.19s;
}

.resource-card:nth-child(6) {
    animation-delay: 0.23s;
}

.resource-card:nth-child(7) {
    animation-delay: 0.27s;
}

.resource-card:nth-child(8) {
    animation-delay: 0.31s;
}

.resource-card:nth-child(9) {
    animation-delay: 0.35s;
}

.resource-card:nth-child(10) {
    animation-delay: 0.39s;
}

.resource-card:nth-child(11) {
    animation-delay: 0.43s;
}

.resource-card:nth-child(12) {
    animation-delay: 0.47s;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.15);
    outline-offset: 3px;
}

.hero-email-input:focus-visible {
    outline: none;
}

@media (max-width: 1140px) {
    .home-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas: none;
    }

    .home-bento-card {
        grid-column: span 1;
        grid-area: auto;
    }

    .bento-card-wide {
        grid-column: span 2;
        grid-area: auto;
    }

    .bento-card-tall {
        grid-row: span 1;
    }

    .home-bento-card:nth-child(1),
    .home-bento-card:nth-child(2),
    .home-bento-card:nth-child(3),
    .home-bento-card:nth-child(4),
    .home-bento-card:nth-child(5) {
        grid-area: auto;
    }

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

    .tag-ui {
        left: 164px;
    }

    .tag-video {
        right: 164px;
    }

    .hero-float-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 900px) {
    .home-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas: none;
        grid-auto-rows: auto;
    }

    .home-bento-card,
    .bento-card-wide,
    .bento-card-tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 360px;
    }

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

    .home-testimonials-head {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-testimonials-head > p {
        margin-top: 0;
    }

    .home-testimonials-grid {
        column-count: 2;
        padding: 28px;
    }
}

@media (max-width: 980px) {
    .page-shell {
        padding: 18px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(13, 13, 13, 0.95);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    }

    .site-header.is-open .site-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .site-nav .nav-dropdown-menu {
        pointer-events: none;
    }

    .site-header.is-open .site-nav .nav-dropdown-menu {
        pointer-events: auto;
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 8px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }

    .nav-collections-dropdown::after {
        display: none;
    }

    .nav-collections-menu {
        width: auto;
        grid-template-columns: 1fr;
        row-gap: 10px;
        padding: 14px;
        border-radius: 16px;
    }

    .nav-collections-menu a.nav-collection-link {
        min-height: 36px;
        gap: 12px;
        font-size: 0.78rem;
    }

    .nav-collection-icon {
        width: 20px;
        height: 20px;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .site-nav a.nav-waitlist-button {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 30px;
    }

    .hero-content {
        padding-top: 112px;
        padding-bottom: 70px;
    }

    .hero-float-icon {
        width: 52px;
        height: 52px;
        opacity: 0.3;
    }

    .catalog-shell {
        grid-template-columns: 1fr;
    }

    .catalog-search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-filter-bar {
        flex-wrap: wrap;
    }

    .home-category-entry {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-panel {
        position: static;
    }

    .waitlist-modal {
        padding: 16px;
    }

    .waitlist-modal-card {
        --waitlist-modal-width: 620px;
        --waitlist-modal-padding: 22px;
        --waitlist-modal-padding-negative: -22px;
        --waitlist-modal-image-ratio: 16 / 6.6;
        --waitlist-modal-title-size: clamp(2.2rem, 7vw, 3rem);
        --waitlist-modal-copy-size: 0.82rem;
        --waitlist-modal-field-padding: 13px 15px;
        --waitlist-modal-button-padding: 13px 18px;
    }

    .submit-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-card {
        flex-direction: column;
    }

    .featured-card-thumbs {
        max-height: 200px;
        overflow: hidden;
        width: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-built {
        padding-top: 36px;
    }

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

@media (max-width: 760px) {
    .site-header {
        padding: 16px 18px;
    }

    .brand-copy {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
    }

    .hero-copy {
        font-size: 0.9rem;
        margin-top: 24px;
    }

    .hero-float-icon {
        width: 40px;
        height: 40px;
        opacity: 0.15;
    }

    .hero-email-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 8px;
        gap: 8px;
    }

    .hero-email-input {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .hero-email-form .primary-button {
        width: 100%;
        border-radius: 14px;
        padding: 14px;
    }

    .hero-actions,
    .hero-proof,
    .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-category-search-trigger {
        min-height: 62px;
        padding: 10px 12px 10px 20px;
    }

    .hero-category-search-trigger kbd {
        min-width: 42px;
        height: 36px;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .hero-actions a,
    .submit-strip .primary-button {
        width: 100%;
    }

    .hero-note {
        border-radius: 24px;
        text-align: left;
    }

    .hero-note-text {
        letter-spacing: 3px;
        font-size: 0.6rem;
    }

    .home-bento-section {
        margin-top: 44px;
    }

    .home-category-cloud-section {
        margin-top: 44px;
        padding: 36px 14px;
        border-radius: 24px;
    }

    .home-testimonials-section {
        margin-top: 44px;
    }

    .home-testimonials-head h2 {
        font-size: 2.4rem;
    }

    .home-testimonials-frame {
        height: 560px;
        border-radius: 20px;
    }

    .home-testimonials-grid {
        column-count: 1;
        padding: 22px;
    }

    .testimonial-card {
        padding: 18px;
        border-radius: 16px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .home-category-cloud-head {
        margin-bottom: 32px;
    }

    .home-category-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .home-category-pill strong {
        flex: 1;
    }

    .home-bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .home-bento-card,
    .bento-card-wide,
    .bento-card-tall {
        min-height: 340px;
        padding: 20px;
    }

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

    .floating-tile,
    .role-tag {
        display: none;
    }

    .toolbar-pills {
        justify-content: flex-start;
    }

    .card-thumb {
        aspect-ratio: 16 / 9;
    }

    .catalog-main {
        height: auto;
        max-height: none;
    }

    .pricing-list {
        flex-wrap: wrap;
        gap: 4px;
    }

    .category-dropdown {
        width: 100%;
    }

    .featured-card-info {
        padding: 24px;
    }

    .waitlist-modal-card {
        --waitlist-modal-width: 520px;
        --waitlist-modal-padding: 18px;
        --waitlist-modal-padding-negative: -18px;
        --waitlist-modal-image-ratio: 16 / 6;
        --waitlist-modal-title-size: clamp(2rem, 8vw, 2.6rem);
        --waitlist-modal-copy-size: 0.78rem;
        --waitlist-modal-field-padding: 12px 14px;
        --waitlist-modal-button-padding: 12px 16px;
    }

    .waitlist-modal-image {
        margin-bottom: 20px;
    }

    .waitlist-modal-kicker {
        margin-right: 0;
    }

    .waitlist-form {
        gap: 12px;
        margin-top: 18px;
    }
}

@media (max-width: 560px) {
    .page-shell {
        padding: 10px;
    }

    .hero,
    .home-category-entry,
    .catalog-main,
    .filter-panel,
    .submit-strip {
        border-radius: 24px;
    }

    .hero {
        padding: 16px;
    }

    .home-category-entry {
        padding: 20px;
    }

    .home-category-button {
        width: 100%;
    }

    .hero-content {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 3.25rem;
        margin-top: 24px;
    }

    .hero-copy {
        font-size: 0.82rem;
        margin-top: 16px;
    }

    .home-bento-head h2 {
        font-size: 1.75rem;
    }

    .home-category-cloud-head h2 {
        font-size: 2.2rem;
    }

    .home-category-cloud-head p {
        font-size: 0.95rem;
    }

    .home-category-pill {
        min-height: 50px;
        gap: 10px;
        padding: 8px 12px;
    }

    .home-category-pill strong {
        font-size: 0.95rem;
    }

    .home-category-pill-count {
        font-size: 0.86rem;
    }

    .home-bento-card,
    .bento-card-wide,
    .bento-card-tall {
        min-height: 320px;
        border-radius: 20px;
    }

    .bento-figma-visual {
        min-height: 260px;
    }

    .figma-dot {
        width: 66px;
        height: 66px;
    }

    .dot-red,
    .dot-purple,
    .dot-green {
        margin-left: -66px;
    }

    .dot-red,
    .dot-coral {
        top: 42px;
    }

    .dot-purple,
    .dot-blue {
        top: 108px;
    }

    .dot-green {
        top: 174px;
    }

    .waitlist-modal {
        padding: 14px;
    }

    .waitlist-modal-card {
        --waitlist-modal-width: 100%;
        --waitlist-modal-padding: 18px;
        --waitlist-modal-padding-negative: -18px;
        --waitlist-modal-image-ratio: 16 / 6.5;
        --waitlist-modal-title-size: clamp(1.9rem, 10vw, 2.35rem);
        --waitlist-modal-copy-size: 0.74rem;
        --waitlist-modal-field-padding: 11px 13px;
        --waitlist-modal-button-padding: 12px 14px;
        border-radius: 20px;
        padding: 0 var(--waitlist-modal-padding) var(--waitlist-modal-padding);
    }

    .waitlist-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }

    .waitlist-modal-image {
        margin-bottom: 16px;
    }

    .waitlist-route-brand {
        top: 18px;
        left: 18px;
    }

    .waitlist-route-copy {
        display: none;
    }

    .hero-float-icon {
        display: none;
    }

    .hero-note,
    .glass-button,
    .secondary-button,
    .primary-button {
        width: 100%;
    }

    .avatar {
        width: 20px;
        height: 20px;
        margin-left: -10px;
    }

    .avatar:first-child {
        margin-left: 0;
    }

    .filter-panel,
    .catalog-main {
        padding: 0;
    }

    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .card-shell {
        padding: 10px;
    }

    .card-top h3 {
        font-size: 0.85rem;
    }

    .card-top {
        margin-bottom: 10px;
        gap: 8px;
    }

    .logo-badge {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }

    .card-divider {
        margin: 10px -10px 10px;
    }

    .card-footer {
        align-items: center;
    }

    .tag {
        padding: 4px 6px;
        font-size: 0.4rem;
        letter-spacing: 0.15rem;
    }

    .card-action {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .card-action-arrow {
        font-size: 1rem;
    }

    .price-badge {
        font-size: 0.5rem;
        padding: 2px 6px;
    }

    .featured-card-info {
        padding: 20px;
    }

    .featured-card-title {
        font-size: 2rem;
    }

    .divider-strip {
        padding: 0 12px 8px;
    }

    .site-header {
        padding: 12px 14px;
        top: 10px;
        border-radius: 18px;
    }

    .site-footer {
        margin: 44px -10px -10px;
        padding: 34px 18px 22px;
    }

    .footer-large-copy {
        margin-top: 26px;
    }

    .footer-note {
        margin-top: 32px;
    }

    .footer-directory {
        gap: 48px;
    }

    .footer-group h2 {
        margin-bottom: 22px;
    }

    .footer-category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-logo {
        height: 26px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .nav-toggle span {
        width: 16px;
    }
}

@media (max-height: 760px) and (pointer: fine) {
    .waitlist-modal-card {
        --waitlist-modal-width: 640px;
        --waitlist-modal-padding: 18px;
        --waitlist-modal-padding-negative: -18px;
        --waitlist-modal-image-ratio: 16 / 5.5;
        --waitlist-modal-title-size: clamp(2rem, 6vh, 2.7rem);
        --waitlist-modal-copy-size: 0.74rem;
        --waitlist-modal-field-padding: 11px 14px;
        --waitlist-modal-button-padding: 12px 16px;
    }

    .waitlist-modal-image {
        margin-bottom: 18px;
    }

    .waitlist-form {
        gap: 12px;
        margin-top: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════
   Blog Pages
   ═══════════════════════════════════════════ */

body.blog-index-page {
    --text: #f5f1ea;
    --muted: #686868;
    --muted-strong: #dcdcdc;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.18);
    background: #101010;
    color: var(--text);
    font-family: "Geist Mono", monospace;
}

body.blog-index-page::before {
    display: block;
}

.blog-index-page .site-header {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(13, 13, 13, 0.84);
}

.blog-index-page .brand-logo,
.blog-index-page .footer-brand img {
    filter: none;
}

.blog-index-page .site-nav a {
    color: rgba(255, 255, 255, 0.5);
}

.blog-index-page .site-nav a:hover,
.blog-index-page .site-nav a:focus-visible {
    color: var(--text);
}

.blog-index-page .nav-toggle {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.blog-index-page .nav-toggle span {
    background: var(--text);
}

.blog-index-page .site-footer {
    border-color: rgba(255, 255, 255, 0.08);
}

.design-index {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
    padding: 72px 0 104px;
}

.design-index-sidebar {
    position: sticky;
    top: 132px;
    min-width: 0;
}

.design-index-header {
    max-width: 360px;
    margin: 0;
    padding: 0 0 38px;
}

.design-index-kicker {
    display: inline-flex;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.42);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.design-index-header h1 {
    max-width: 320px;
    margin: 0;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 48px;
    font-weight: 200;
    letter-spacing: -0.1rem;
    line-height: 0.96;
}

.design-index-header p:not(.design-index-kicker) {
    max-width: 330px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.65;
    text-transform: uppercase;
}

.design-index-header::after {
    content: "";
    display: block;
    width: 132px;
    height: 1px;
    margin-top: 36px;
    background: rgba(255, 255, 255, 0.16);
}

.design-topic-pills {
    display: flex;
    max-width: 340px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.design-topic-title {
    margin: 0 0 8px;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 22px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.1;
}

.design-topic-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.035);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.design-topic-pills a:hover,
.design-topic-pills a:focus-visible,
.design-topic-pills a[aria-current="page"] {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.09);
}

.design-topic-pills a:hover,
.design-topic-pills a:focus-visible {
    transform: translateX(3px);
}

.design-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 28px;
    min-width: 0;
}

.design-story-card {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    transition: transform 0.2s ease;
}

.design-story-card:hover,
.design-story-card:focus-within {
    transform: translateY(-2px);
}

.design-blog-empty {
    grid-column: 1 / -1;
    min-height: 260px;
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
}

.design-blog-empty p {
    margin: 0;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 36px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.1;
}

.design-blog-empty span {
    display: block;
    max-width: 520px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    font-weight: 200;
    line-height: 1.65;
}

.design-story-link,
.design-story-card {
    color: var(--text);
}

.design-story-link {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
}

.design-story-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1.86 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: #141414;
}

.design-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.08) brightness(0.78);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.design-story-link:hover .design-story-media img,
.design-story-link:focus-visible .design-story-media img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.08) brightness(0.95);
}

.design-story-copy {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 22px 0 0;
}

.design-story-label {
    display: inline-flex;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.42);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.design-story-copy h2 {
    margin: 0;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.16;
}

.design-story-copy p {
    display: -webkit-box;
    margin: 18px 0 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.52);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.design-story-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-top: 22px;
    padding-top: 0;
    color: rgba(255, 255, 255, 0.38);
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.design-author,
.blog-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.design-author-avatar,
.blog-author-avatar {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    object-fit: cover;
}

.design-story-meta span + span::before,
.design-story-meta time + span::before {
    content: "·";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1180px) {
    .design-index {
        grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
        gap: 44px;
    }

    .design-story-grid {
        gap: 48px 22px;
    }
}

@media (max-width: 980px) {
    .blog-index-page .site-nav {
        background: rgba(13, 13, 13, 0.96);
    }

    .design-index {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-top: 48px;
    }

    .design-index-sidebar {
        position: static;
    }

    .design-index-header {
        max-width: 720px;
        padding-bottom: 28px;
    }

    .design-index-header h1,
    .design-index-header p:not(.design-index-kicker) {
        max-width: 720px;
    }

    .design-topic-pills {
        max-width: none;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .design-index {
        padding: 34px 0 76px;
    }

    .design-index-header h1 {
        font-size: 46px;
    }

    .design-index-header p:not(.design-index-kicker) {
        font-size: 14px;
    }

    .design-topic-pills {
        gap: 10px;
    }

    .design-topic-pills a {
        min-height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }

    .design-story-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .design-story-copy {
        padding-top: 18px;
    }

    .design-story-copy h2 {
        font-size: 26px;
    }

    .design-story-copy p {
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .design-index-header h1 {
        font-size: 64px;
    }

    .design-index-header {
        padding-top: 20px;
        padding-bottom: 34px;
    }

    .design-story-copy h2 {
        font-size: 24px;
    }
}

.blog-landing {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 56px 24px 96px;
}

.blog-channel-header {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 36px;
    align-items: end;
    padding: 64px 0 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-channel-art {
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: #0d0d0d;
    overflow: hidden;
}

.blog-channel-art img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    opacity: 0.7;
    filter: grayscale(1) contrast(1.1);
}

.blog-channel-copy {
    padding-bottom: 8px;
}

.blog-channel-copy h1 {
    margin: 0;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 4.75rem;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1;
}

.blog-channel-copy > p:not(.blog-kicker) {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 1rem;
    font-weight: 200;
}

.blog-topic-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    padding: 22px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-topic-nav a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.blog-topic-nav a:hover,
.blog-topic-nav a:focus-visible {
    color: var(--text);
}

.blog-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
    gap: 32px;
    padding-top: 36px;
}

.blog-lead-story a {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 24px;
    min-height: 430px;
}

.blog-lead-media {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: #0d0d0d;
    overflow: hidden;
}

.blog-lead-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    filter: grayscale(1) contrast(1.08);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.blog-lead-story:hover .blog-lead-media img,
.blog-lead-story:focus-within .blog-lead-media img {
    opacity: 1;
    transform: scale(1.03);
}

.blog-lead-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4px 0;
}

.blog-lead-copy h2 {
    margin: 22px 0 18px;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 3.15rem;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.04;
}

.blog-lead-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    font-weight: 200;
}

.blog-side-stories {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-side-story {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-side-story h2 {
    margin: 12px 0 0;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.25;
}

.blog-side-story-muted h2,
.blog-side-story-muted .blog-card-meta {
    color: rgba(255, 255, 255, 0.42);
}

.blog-latest-section {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 36px;
    margin-top: 72px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-latest-section > h2 {
    margin: 0;
    color: var(--text);
    font-family: "Geist Mono", monospace;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-latest-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-latest-item a {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(180px, 0.6fr) 130px;
    gap: 24px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-latest-label,
.blog-latest-item time {
    color: rgba(255, 255, 255, 0.38);
    font-family: "Geist Mono", monospace;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-latest-item h3 {
    margin: 0;
    color: var(--text);
    font-family: "Geist", sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.22;
}

.blog-latest-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.85rem;
    font-weight: 200;
    line-height: 1.65;
}

.blog-section {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 56px 24px 96px;
}

.blog-hero {
    max-width: 860px;
    margin: 72px auto 56px;
    text-align: center;
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-hero h1,
.blog-article-header h1 {
    font-family: "Geist", sans-serif;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.04;
    color: var(--text);
}

.blog-hero h1 {
    max-width: 780px;
    margin: 0 auto;
    font-size: 4.5rem;
}

.blog-hero-copy {
    max-width: 650px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 200;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.blog-card {
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        #0d0d0d;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.blog-card:hover,
.blog-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
        #0d0d0d;
}

.blog-card-link {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 28px;
}

.blog-card-meta,
.blog-article-meta {
    font-family: "Geist Mono", monospace;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-card h2 {
    margin: 24px 0 16px;
    color: var(--text);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.1;
}

.blog-card p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
    font-weight: 200;
}

.blog-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-card-action span {
    display: inline-block;
    transition: transform 0.25s ease;
}

.blog-card:hover .blog-card-action span,
.blog-card:focus-within .blog-card-action span {
    transform: translate(2px, -2px);
}

.blog-article {
    width: min(1200px, calc(100% - 48px));
    max-width: none;
    margin: 0 auto;
    padding: 80px 0 0;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 800px) minmax(280px, 340px);
    align-items: start;
    gap: 56px;
}

.blog-article-main {
    min-width: 0;
}

.blog-waitlist-sidebar {
    position: sticky;
    top: 150px;
    align-self: start;
}

.blog-waitlist-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(18, 18, 18, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.blog-waitlist-image {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
}

.blog-waitlist-card h2,
.blog-waitlist-card p,
.blog-waitlist-form {
    margin-left: 20px;
    margin-right: 20px;
}

.blog-waitlist-card h2 {
    margin-top: 22px;
    margin-bottom: 0;
    color: #ffffff;
    font-family: "Geist", sans-serif;
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: -0.06rem;
    line-height: 1.04;
}

.blog-waitlist-card p {
    margin-top: 12px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Geist Mono", monospace;
    font-size: 0.78rem;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.7;
}

.blog-waitlist-form {
    margin-top: 22px;
    margin-bottom: 20px;
    gap: 12px;
}

.blog-waitlist-form .waitlist-email-input {
    min-height: 52px;
    padding: 12px 14px;
    font-size: 0.9rem;
}

.blog-waitlist-form .waitlist-submit-button {
    min-height: 52px;
    padding: 12px 18px;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 52px;
    color: rgba(255, 255, 255, 0.42);
    font-family: "Geist Mono", monospace;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.blog-back-link:hover,
.blog-back-link:focus-visible {
    color: var(--text);
    transform: translateX(-2px);
}

.blog-article-header {
    padding-bottom: 40px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-header h1 {
    margin: 0 0 24px;
    font-family: "Geist", sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.15rem;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    font-family: "Geist Mono", monospace;
}

.blog-share-control {
    position: relative;
    display: inline-flex;
    margin-left: auto;
}

.blog-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: transparent;
    border-radius: 10px;
    background: #101010;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.blog-share-button:hover,
.blog-share-button:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    outline: none;
    transform: translateY(-1px);
}

.blog-share-control.is-open .blog-share-button {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.blog-share-button i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-style: normal;
    line-height: 1;
}

.blog-share-button i::before {
    content: "";
    width: 14px;
    height: 14px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.blog-share-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 12;
    display: grid;
    min-width: 190px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(16, 16, 16, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.blog-share-menu[hidden] {
    display: none;
}

.blog-share-menu a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Geist", sans-serif;
    font-size: 0.86rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.blog-share-menu a:hover,
.blog-share-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    outline: none;
}

.blog-article-meta > span {
    position: relative;
}

.blog-article-meta > span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -11px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%);
}

.blog-author-avatar {
    width: 24px;
    height: 24px;
}

.blog-content p,
.blog-content li {
    color: rgba(255, 255, 255, 0.62);
    font-family: "Georgia";
    -webkit-font-smoothing: antialiased;
    font-size: 1.2rem;
    line-height: 2;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    font-family: "Geist", sans-serif;
    color: var(--text);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.2;
}

.blog-content h1 {
    margin: 56px 0 20px;
    font-size: 2.2rem;
}

.blog-content h2 {
    margin: 48px 0 18px;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.05rem;
}

.blog-content h3 {
    margin: 36px 0 14px;
    font-size: 1.25rem;
}

.blog-content p {
    margin: 0;
}

.blog-content p + p,
.blog-content ul + p {
    margin-top: 24px;
}

.blog-content ul {
    margin: 32px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content ol {
    margin: 32px 0;
    padding: 0 0 0 24px;
}

.blog-content li {
    position: relative;
    margin: 0;
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content ol li {
    padding-left: 8px;
}

.blog-content li::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.blog-content ol li::before {
    content: none;
}

.blog-content-image {
    margin: 40px 0;
}

.blog-content-image img {
    width: 100%;
    max-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    object-fit: cover;
}

.blog-content-image figcaption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.42);
    font-family: "Geist Mono", monospace;
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.6;
}

.blog-content blockquote {
    margin: 40px 0;
    padding: 22px 0 22px 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.72);
    font-family: "Geist", sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.45;
}

.blog-content hr {
    margin: 44px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 980px) {
    .blog-channel-header,
    .blog-feature-layout,
    .blog-lead-story a,
    .blog-latest-section {
        grid-template-columns: 1fr;
    }

    .blog-channel-header {
        padding-top: 48px;
    }

    .blog-channel-copy h1 {
        font-size: 3.4rem;
    }

    .blog-lead-story a {
        min-height: 0;
    }

    .blog-lead-media {
        min-height: 320px;
    }

    .blog-lead-copy h2 {
        font-size: 2.6rem;
    }

    .blog-latest-item a {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .blog-section {
        padding-top: 44px;
    }

    .blog-hero {
        margin-top: 56px;
    }

    .blog-hero h1 {
        font-size: 3.4rem;
    }

    .blog-article {
        padding-top: 64px;
    }

    .blog-article-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .blog-waitlist-sidebar {
        position: static;
    }

    .blog-waitlist-card {
        max-width: 520px;
    }

    .blog-article-header h1 {
        font-size: 3.25rem;
    }
}

@media (max-width: 760px) {
    .blog-landing {
        padding: 48px 16px 72px;
    }

    .blog-channel-header {
        gap: 24px;
    }

    .blog-channel-art,
    .blog-channel-art img {
        min-height: 220px;
    }

    .blog-channel-copy h1,
    .blog-lead-copy h2 {
        font-size: 2.35rem;
    }

    .blog-topic-nav {
        gap: 10px 18px;
        padding-bottom: 30px;
    }

    .blog-feature-layout {
        padding-top: 28px;
        gap: 28px;
    }

    .blog-lead-media {
        min-height: 240px;
    }

    .blog-latest-section {
        gap: 20px;
        margin-top: 52px;
    }

    .blog-latest-item a {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .blog-section {
        padding: 56px 16px 72px;
    }

    .blog-hero {
        margin: 48px auto 40px;
        text-align: left;
    }

    .blog-kicker {
        justify-content: flex-start;
    }

    .blog-hero h1 {
        font-size: 2.45rem;
    }

    .blog-hero-copy {
        margin-top: 18px;
        font-size: 0.9rem;
    }

    .blog-card,
    .blog-card-link {
        min-height: 260px;
    }

    .blog-card-link {
        padding: 22px;
    }

    .blog-card h2 {
        font-size: 1.5rem;
    }

    .blog-article {
        width: 100%;
        padding: 56px 16px 76px;
    }

    .blog-back-link {
        margin-bottom: 36px;
    }

    .blog-article-header {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .blog-article-header h1 {
        font-size: 2.45rem;
    }

    .blog-waitlist-card {
        max-width: none;
    }

    .blog-content p,
    .blog-content li {
        font-size: 1.3rem;
        line-height: 1.8;
    }

    .blog-content p:first-child {
        font-size: 1.3rem;
    }

}

@media (max-width: 560px) {
    .blog-landing {
        padding-left: 10px;
        padding-right: 10px;
    }

    .blog-channel-copy h1,
    .blog-lead-copy h2 {
        font-size: 2rem;
    }

    .blog-channel-art,
    .blog-channel-art img,
    .blog-lead-media {
        min-height: 190px;
    }

    .blog-section {
        padding-left: 10px;
        padding-right: 10px;
    }

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

    .blog-hero h1,
    .blog-article-header h1 {
        font-size: 3rem;
    }

    .blog-article {
        padding-left: 10px;
        padding-right: 10px;
    }

}

/* ═══════════════════════════════════════════
   Privacy & Terms Pages
   ═══════════════════════════════════════════ */

.privacy-section,
.terms-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.privacy-section h1,
.terms-section h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: var(--text);
}

.privacy-updated,
.terms-updated {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 48px;
    display: block;
}

.privacy-section h2,
.terms-section h2 {
    font-size: 1.35rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text);
}

.privacy-section h3,
.terms-section h3 {
    font-size: 1.05rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--muted-strong);
}

.privacy-section p,
.privacy-section li,
.terms-section p,
.terms-section li {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.privacy-section ul,
.terms-section ul {
    padding-left: 20px;
    margin: 12px 0;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 6px;
}

.privacy-section a,
.terms-section a {
    color: var(--accent);
    text-decoration: none;
}

.privacy-section a:hover,
.terms-section a:hover {
    text-decoration: underline;
}

.privacy-toc,
.terms-toc {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    margin-bottom: 48px;
}

.privacy-toc p,
.terms-toc p {
    font-weight: 600;
    color: var(--muted-strong);
    margin: 0 0 12px;
    font-size: 0.9rem;
}

.privacy-toc ol,
.terms-toc ol {
    padding-left: 20px;
    margin: 0;
}

.privacy-toc li,
.terms-toc li {
    margin-bottom: 4px;
}

.privacy-toc a,
.terms-toc a {
    color: var(--muted);
    font-size: 0.88rem;
}

.privacy-toc a:hover,
.terms-toc a:hover {
    color: var(--accent);
}

/* ═══════════════════════════════════════════
   Books Page
   ═══════════════════════════════════════════ */

.books-section {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.books-header {
    text-align: center;
    margin-bottom: 56px;
}

.books-header h1 {
    font-family: "Geist", sans-serif;
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 200;
    letter-spacing: -1.5px;
    margin: 0 0 12px;
}

.books-header p {
    color: #ffffff50;
    font-size: 1rem;
    font-weight: 200;
    margin: 0;
    transform: uppercase;
}

.books-info-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    vertical-align: middle;
    cursor: pointer;
}

.books-info-icon {
    color: var(--muted);
    opacity: 0.5;
    transition: opacity 0.2s;
}

.books-info-wrap:hover .books-info-icon {
    opacity: 1;
}

.books-info-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--panel-strong);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--muted-strong);
    line-height: 1.5;
    width: 240px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: normal;
}

.books-info-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--border);
}

.books-info-wrap:hover .books-info-tooltip {
    opacity: 1;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 8px;
}

.books-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 60px 0;
}

.book-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.book-card {
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.book-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.book-thumb {
    position: relative;
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 3 / 4;
    background: #1a1a1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.book-bestseller-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000000;
    border: 1px solid #ffffff40;
    color: #fff;
    font-family: "Geist Mono", monospace;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px;
    border-radius: 4px;
    z-index: 2;
    line-height: 1;
}

.book-buy-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: "Geist Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    pointer-events: none;
}

.book-card:hover .book-buy-btn {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}


.book-title {
    height: 40px;
    font-family: "Geist", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 16px;
    line-height: 1.35;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-meta {
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}

.book-author {
    font-family: "Geist Mono", monospace;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--muted);
    margin: 0;
    letter-spacing: 1.5px;
}

.book-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.book-star {
    flex-shrink: 0;
}

.book-rating-num {
    font-family: "Geist Mono", monospace;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--muted-strong);
    margin-left: 4px;
}

/* Skeleton loader */
@keyframes book-shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.book-skeleton {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.book-skeleton-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 37%, #1a1a1a 63%);
    background-size: 800px 100%;
    animation: book-shimmer 1.4s ease infinite;
}

.book-skeleton-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.book-skeleton-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 37%, #1a1a1a 63%);
    background-size: 800px 100%;
    animation: book-shimmer 1.4s ease infinite;
}

.book-skeleton-line.--title { width: 85%; height: 14px; }
.book-skeleton-line.--author { width: 50%; height: 10px; }
.book-skeleton-line.--stars { width: 60%; height: 10px; }

@media (max-width: 1140px) {
    .books-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .books-section {
        padding: 100px 16px 60px;
    }
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .book-info {
        padding: 12px 14px 16px;
    }
    .book-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 560px) {
    .books-grid {
        gap: 10px;
    }
    .book-info {
        padding: 10px 12px 14px;
    }
    .book-title {
        font-size: 0.8rem;
    }
    .book-author {
        font-size: 0.65rem;
    }
    .book-star {
        width: 13px;
        height: 13px;
    }
    .book-rating-num {
        font-size: 0.7rem;
    }
}

/* ═══════════════════════════════════════════
   Pricing Page (DreamCut-style)
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.pr-hero {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pr-hero-title {
    font-family: "Geist", sans-serif;
    font-size: 5rem;
    font-weight: 100;
    letter-spacing: -6px;
    line-height: 1;
    color: var(--text);
    margin: 80px 0px 16px;
}

.pr-hero-subtitle {
    font-family: "Geist", sans-serif;
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: -1px;
    color: #ffffff70;
    margin: 0 0 12px;
    line-height: 1.4;
}

.pr-hero-desc {
    color: #ffffff30;
    font-size: 0.9rem;
    margin: 0 auto;
    line-height: 1.6;
    text-transform: uppercase;
}

/* ── Cards Section ── */
.pr-cards {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
    margin-top: 80px;
}

.pr-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 36px 0px;
    font-family: "Geist", sans-serif;
}

.pr-billing-option {
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pr-billing-option.is-active {
    color: var(--text);
}

.pr-billing-switch {
    position: relative;
    width: 48px;
    height: 32px;
    border: 0;
    border-radius: 48px;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.pr-billing-switch-thumb {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
    transform: translateX(0);
    transition: transform 0.24s ease;
}

.pr-billing-switch.is-yearly .pr-billing-switch-thumb {
    transform: translateX(18px);
}

.pr-billing-save {
    display: inline-flex;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ffffff10;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
}

.pr-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.pr-card {
    position: relative;
    background: var(--panel);
    border-radius: var(--radius-md);
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
}

.pr-card-featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, var(--panel) 40%);
    z-index: 1;
}

.pr-card-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background: conic-gradient(
        from var(--shimmer-angle, 0deg),
        transparent 0%,
        transparent 70%,
        rgba(255, 255, 255, 0.3) 76%,
        rgba(255, 255, 255, 0.7) 80%,
        rgba(255, 255, 255, 0.3) 84%,
        transparent 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: shimmer-rotate 3s linear infinite;
}

.pr-card-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: #3f3f3f;
    border-bottom: 1px solid #ffffff20;
    border-left: 1px solid #ffffff20;
    border-right: 1px solid #ffffff20;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0 0 10px 10px;
}

.pr-card-head {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pr-card-name {
    font-family: "Geist", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 16px;
}

.pr-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.pr-price-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--muted-strong);
    align-self: flex-start;
    margin-top: 6px;
}

.pr-price-value {
    font-family: "Geist", sans-serif;
    font-size: 5rem;
    letter-spacing: -5px;
    font-weight: 100;
    color: var(--text);
    line-height: 1;
}

.pr-card-period {
    color: #ffffff30;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin: 0;
}

.pr-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.pr-card-head .pr-card-badge{
    background-color: #000000;
    color: #ffffff;
}

.pr-card-features li {
    display: flex;
    text-transform: uppercase;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.pr-card-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #a7a7a7;
}

.pr-card-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-family: "Geist Mono", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 48px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.pr-btn-solid {
    background: var(--accent);
    color: #000000;
}

.pr-btn-solid:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
}

.pr-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.pr-btn-outline:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.04);
}

.pr-cards-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Compare Plans Table ── */
.pr-compare {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.pr-section-title {
    font-family: "Geist", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin: 0 0 48px;
}

.pr-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.pr-table thead th {
    padding: 20px 16px 24px;
    text-align: center;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.pr-table thead th:first-child {
    text-align: left;
}

.pr-th-name {
    display: block;
    font-family: "Geist", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.pr-th-price {
    display: block;
    font-family: "Geist", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}

.pr-th-period {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 400;
}

.pr-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
}

.pr-table tbody td:first-child {
    text-align: left;
    color: var(--muted-strong);
    font-weight: 500;
}

.pr-table-section td {
    padding: 20px 16px 10px !important;
    font-family: "Geist", sans-serif;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: var(--accent) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border) !important;
}

.pr-check {
    color: var(--accent);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pr-dash {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
}

/* ── FAQ ── */
.pr-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.pr-faq-list {
    border-top: 1px solid var(--border);
}

.pr-faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.pr-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: "Geist", sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}

.pr-faq-item summary::-webkit-details-marker {
    display: none;
}

.pr-faq-item summary svg {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.28s ease;
}

.pr-faq-item[open]:not(.is-closing) summary svg,
.pr-faq-item.is-opening summary svg {
    transform: rotate(180deg);
}

.pr-faq-item p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
    margin: 0 0 20px;
    padding-right: 32px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.22s ease, transform 0.28s ease;
}

.pr-faq-item[open]:not(.is-closing) p {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .pr-billing-option,
    .pr-billing-switch-thumb,
    .pr-faq-item summary svg,
    .pr-faq-item p {
        transition: none;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pr-billing-toggle {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 28px;
    }

    .pr-billing-option {
        font-size: 1.05rem;
    }

    .pr-billing-save {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .pr-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pr-card-featured {
        transform: none;
    }

    .pr-hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    .pr-hero-subtitle {
        font-size: 1.1rem;
    }

    .pr-section-title {
        font-size: 1.5rem;
    }

    .pr-table {
        font-size: 0.8rem;
    }

    .pr-table thead th {
        padding: 12px 8px;
    }

    .pr-table tbody td {
        padding: 10px 8px;
    }
}

@media (max-width: 560px) {
    .pr-hero {
        padding: 80px 16px 40px;
    }

    .pr-hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .pr-hero-subtitle {
        font-size: 0.95rem;
    }

    .pr-hero-desc {
        font-size: 0.78rem;
    }

    .pr-cards {
        padding: 0 12px 60px;
    }

    .pr-cards-grid {
        max-width: 100%;
    }

    .pr-card {
        padding: 28px 20px 24px;
    }

    .pr-compare {
        padding: 0 12px 60px;
    }

    .pr-faq {
        padding: 0 12px 60px;
    }

    .pr-faq-item summary {
        font-size: 0.84rem;
        gap: 12px;
    }

    .pr-faq-item p {
        padding-right: 0;
    }

    .pr-billing-toggle {
        gap: 8px;
    }

    .pr-billing-option {
        font-size: 0.9rem;
    }

    .pr-billing-switch {
        width: 52px;
        height: 34px;
        padding: 4px;
    }

    .pr-billing-switch-thumb {
        width: 26px;
        height: 26px;
    }

    .pr-billing-switch.is-yearly .pr-billing-switch-thumb {
        transform: translateX(18px);
    }

    .pr-billing-save {
        min-height: 32px;
        padding: 0 10px;
        font-size: 0.78rem;
        border-radius: 10px;
    }
}

/* ── Tool / Product Page ── */

.tool-page {
    min-height: 75vh;
    padding: 40px 0 24px;
}

.tool-container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 24px;
}

.tool-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.tool-back-link:hover {
    color: var(--text);
}

.tool-loading,
.tool-not-found {
    text-align: center;
    padding: 80px 0;
    color: var(--muted);
    font-size: 1rem;
}

.tool-not-found h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 8px;
}

.tool-not-found p {
    color: var(--muted);
    margin-bottom: 24px;
}

.category-page-head {
    max-width: none;
    margin: 0 0 34px;
}

.category-index-head-row {
    display: grid;
    grid-template-columns: minmax(0, 780px) auto;
    gap: 28px;
    align-items: end;
}

.category-page-head h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0;
}

.category-page-head p:not(.section-kicker) {
    max-width: 620px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

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

.category-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: #0d0d0d;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
    background: #111;
    outline: none;
}

.category-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.category-card h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 200;
    line-height: 1.08;
    letter-spacing: 0;
}

.category-card-top span {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.75rem;
}

.category-card-image {
    position: relative;
    width: 100%;
    min-height: 140px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    place-items: center;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-card-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--muted-strong);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.category-card-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.category-card-preview span {
    max-width: 100%;
    padding: 5px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-strong);
    font-size: 0.74rem;
    text-transform: uppercase;
}

.category-tool-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 600px;
    max-width: 280px;
    gap: 12px;
    margin: 0 0 8px auto;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.category-search-trigger:hover,
.category-search-trigger:focus-visible {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text);
    outline: none;
}

.category-search-trigger kbd {
    padding: 3px 7px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
}

.category-search-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: start center;
    padding: min(12vh, 90px) 18px 24px;
}

.category-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(10px);
}

.category-search-panel {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        #0d0d0d;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.category-search-input-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-search-label {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-search-input-row input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    outline: none;
    font-family: "Geist", sans-serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 200;
    line-height: 1.2;
}

.category-search-input-row input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.category-search-close {
    width: 38px;
    height: 38px;
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
}

.category-search-results {
    text-transform: uppercase;
    display: grid;
    gap: 6px;
    max-height: min(56vh, 520px);
    overflow-y: auto;
    padding: 10px;
}

.category-search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--text);
    transition: background 0.16s ease, transform 0.16s ease;
}

.category-search-result:hover,
.category-search-result:focus-visible {
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-1px);
    outline: none;
}

.category-search-result span {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.category-search-result strong {
    overflow: hidden;
    font-size: 1rem;
    font: geist, sans-serif;
    font-weight: 200;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-search-result small {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-search-result em {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    font-style: normal;
}

.category-search-empty {
    margin: 0;
    padding: 24px;
    color: var(--muted);
    text-align: center;
}

body.category-search-open {
    overflow: hidden;
}

.tool-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(32px, 6vw, 90px);
    align-items: start;
    margin-bottom: 40px;
}

.tool-info-panel {
    min-width: 0;
}

.tool-preview-panel {
    min-width: 0;
}

/* Tool header */
.tool-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.tool-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--panel-strong);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-icon-fallback {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--muted);
}

.tool-header-info {
    min-width: 0;
}

.tool-header-info h1 {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--text);
    letter-spacing: -0.05rem;
    margin: 0 0 4px;
    line-height: 1.2;
}

.tool-subtitle {
    font-size: 0.7rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.tool-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--text);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 400;
    border-radius: 24px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    text-transform: uppercase;
}

.tool-visit-btn:hover {
    opacity: 0.85;
}

/* Meta section */
.tool-meta {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.tool-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tool-meta-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tool-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tool-tag {
    padding: 4px 12px;
    text-transform: uppercase;
    background: var(--panel-strong);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ffffff70;
}

.tool-meta-value {
    font-size: 0.875rem;
    font-weight: 300;
    align-items: center;
    color: var(--text);
}

.tool-price-free {
    padding: 8px;
    background-color: #ffffff10;
    border-radius: 24px;
    width: 64px;
    border: 1px solid #ffffff20;
}

.tool-price-freemium {
    color: #facc15;
}

.tool-price-paid {
    color: #f87171;
}

/* Screenshot */
.tool-screenshot {
    width: 100%;
    aspect-ratio: var(--tool-thumbnail-ratio);
    display: grid;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 0;
    background: var(--panel);
}

.tool-screenshot.is-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1px;
}

.tool-screenshot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    min-width: 0;
    min-height: 0;
}

.tool-screenshot.is-gallery img:first-child:nth-last-child(3),
.tool-screenshot.is-gallery img:first-child:nth-last-child(5) {
    grid-row: span 2;
}

/* Prev / Next navigation */
.tool-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tool-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.tool-nav-link:hover {
    color: var(--text);
}

.tool-nav-next {
    margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
    .tool-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 640px) {
    .category-grid,
    .category-tool-grid {
        grid-template-columns: 1fr;
    }

    .category-index-head-row {
        grid-template-columns: 1fr;
    }

    .category-search-trigger {
        margin: 8px 0 0;
        width: 100%;
        justify-content: center;
    }

    .category-search-modal {
        padding: 64px 12px 16px;
    }

    .category-search-panel {
        border-radius: 18px;
    }

    .category-search-input-row {
        padding: 14px;
    }

    .category-search-result {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .category-card {
        min-height: 180px;
    }

    .tool-header {
        flex-direction: column;
        gap: 16px;
    }

    .tool-header-info h1 {
        font-size: 1.35rem;
    }

    .tool-meta {
        flex-direction: column;
        gap: 16px;
    }

    .tool-nav {
        flex-direction: column;
        gap: 16px;
    }

    .tool-nav-next {
        margin-left: 0;
        justify-content: flex-end;
    }
}

/* Mobile bento refinement */
@media (max-width: 760px) {
    .stars-field {
        display: none;
    }

    .hero-float-icon {
        animation: none;
    }

    .home-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        grid-template-areas: none;
        gap: 12px;
    }

    .home-bento-card,
    .bento-card-tall {
        display: grid;
        grid-column: 1 / -1;
        grid-row: auto;
        grid-template-rows: auto minmax(280px, auto);
        gap: 20px;
        min-height: 480px;
        padding: 22px;
    }

    .home-bento-card:nth-child(1),
    .home-bento-card:nth-child(2),
    .home-bento-card:nth-child(3),
    .home-bento-card:nth-child(4),
    .home-bento-card:nth-child(5) {
        grid-area: auto;
    }

    .bento-card-wide {
        grid-column: 1 / -1;
    }

    .home-bento-card .bento-copy,
    .home-bento-card .bento-visual {
        padding: 0 !important;
    }

    .bento-visual {
        flex: none;
        overflow: visible;
    }

    .bento-copy h3 {
        font-size: 24px;
        letter-spacing: -1px;
        line-height: 1;
    }

    .bento-copy p {
        max-width: 100%;
        margin-top: 12px;
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .bento-collection-visual {
        gap: 10px;
        width: 100%;
        max-width: none;
        min-height: auto;
        margin: 0;
        overflow: visible;
    }

    .bento-collection-map {
        width: 100%;
        max-width: 540px;
        border-radius: 16px;
        transform: none;
    }

    .home-bento-card:nth-child(1) {
        grid-template-rows: auto auto;
        min-height: auto;
    }

    .bento-wallet-hub {
        width: 76px;
        height: 76px;
    }

    .bento-wallet-hub svg {
        width: 34px;
        height: 34px;
    }

    .bento-tool-node {
        width: 54px;
        height: 54px;
        font-size: 1rem;
    }

    .bento-tool-node img {
        width: 28px;
        height: 28px;
    }

    .node-mobbin img {
        width: 34px;
    }

    .bento-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .bento-logo-card {
        min-height: 58px;
        padding: 8px;
        gap: 5px;
        border-radius: 12px;
    }

    .bento-logo-card img,
    .bento-logo-card-hugicon strong {
        width: 24px;
        height: 24px;
    }

    .bento-logo-card strong {
        font-size: 0.68rem;
    }

    .bento-logo-card small {
        font-size: 0.5rem;
    }

    .bento-logo-card-behance strong {
        font-size: 1.1rem;
    }

    .bento-logo-card-mobbin strong {
        padding: 5px 7px;
        font-size: 0.62rem;
    }

    .bento-logo-card-hugicon strong {
        border-radius: 8px;
        font-size: 0.86rem;
    }

    .bento-search-line {
        height: 30px;
    }

    .bento-chip-row span {
        padding: 5px 8px;
        font-size: 0.62rem;
    }

    .bento-mini-grid {
        gap: 6px;
    }

    .bento-mini-grid span {
        min-height: 34px;
        border-radius: 9px;
    }

    .bento-update-visual {
        gap: 14px;
        min-height: 260px;
    }

    .bento-update-label {
        font-size: 0.95rem;
        letter-spacing: 0.34em;
        text-indent: 0.34em;
    }

    .bento-update-date {
        font-size: 7rem;
        letter-spacing: -10px;
    }

    .bento-figma-visual {
        min-height: 170px;
    }

    .figma-dot {
        width: 48px;
        height: 48px;
    }

    .dot-red,
    .dot-purple,
    .dot-green {
        margin-left: -48px;
    }

    .dot-red,
    .dot-coral {
        top: 26px;
    }

    .dot-purple,
    .dot-blue {
        top: 74px;
    }

    .dot-green {
        top: 122px;
    }

    .bento-cursor-shape {
        width: 112px;
        height: 138px;
        border-width: 12px;
    }

    .bento-panel-visual {
        max-width: none;
        transform: none;
        padding: 0;
    }

    .bento-panel-tabs span {
        width: 42px;
        height: 9px;
    }

    .bento-panel-search {
        height: 32px;
        margin: 12px 0;
    }

    .bento-panel-icons {
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }

    .bento-access-visual {
        gap: 8px;
    }

    .bento-access-categories {
        gap: 6px;
        padding-right: 36px;
        mask-image: linear-gradient(to right, black 0, black calc(100% - 56px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 56px), transparent 100%);
    }

    .bento-access-categories span {
        height: 24px;
        padding: 0 9px;
        font-size: 0.56rem;
    }

    .bento-access-command {
        min-height: 42px;
        gap: 8px;
        padding: 0 10px;
        border-radius: 13px;
    }

    .bento-access-command > span {
        width: 7px;
        height: 7px;
    }

    .bento-access-command strong {
        font-size: 0.68rem;
    }

    .bento-access-command kbd {
        min-width: 24px;
        height: 24px;
        border-radius: 8px;
        font-size: 0.68rem;
    }

    .bento-access-results {
        gap: 6px;
        padding: 0 10px;
    }

    .bento-access-results span {
        height: 9px;
    }
}

@media (max-width: 480px) {
    .home-bento-grid {
        grid-template-columns: 1fr;
    }

    .home-bento-card,
    .bento-card-wide,
    .bento-card-tall {
        grid-column: 1 / -1;
        grid-template-rows: auto minmax(260px, auto);
    }

    .home-bento-card:nth-child(1) {
        grid-template-rows: auto auto;
        min-height: auto;
    }
}

/* ── DW Tools / Color Code Converter ── */

.color-converter-page {
    --converter-active-color: #FF6B3D;
    --converter-active-color-rgb: 255 107 61;
}

.converter-main {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 42px 24px 24px;
}

.converter-hero {
    display: grid;
    grid-template-row: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 38px;
    align-items: start;
}

.converter-hero-copy {
    padding-top: 22px;
}

.converter-kicker,
.converter-output-row span,
.converter-css-head span,
.converter-input-group label {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

.converter-hero h1 {
    max-width: 760px;
    margin: 18px 0 20px;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Geist", sans-serif;
    font-size: 4.8rem;
    font-weight: 200;
    letter-spacing: -0.25rem;
    line-height: 0.98;
}

.converter-intro {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.875rem;
    font-weight: 200;
    letter-spacing: 0;
    text-transform: uppercase;
}

.converter-format-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.converter-format-pills span {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.converter-format-pills span {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    letter-spacing: 0;
}

.converter-workbench {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        #0d0d0d;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.converter-workbench::before {
    display: none;
}

.converter-input-group {
    display: grid;
    gap: 10px;
}

.converter-input-row {
    display: grid;
    grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 0.58fr);
    gap: 14px;
    align-items: start;
}

.converter-input-stack {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.converter-input {
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    color: var(--text);
}

.converter-input {
    width: 100%;
    padding: 0 16px;
    outline: none;
    font-size: 1.1rem;
    letter-spacing: 0;
}

.converter-input:focus {
    border-color: rgba(255, 255, 255, 0.24);
}

.converter-color-space {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.converter-color-plane {
    position: relative;
    min-height: 174px;
    overflow: hidden;
    border-radius: 14px;
    background: #ff6b3d;
    cursor: crosshair;
    touch-action: none;
}

.converter-color-plane::before,
.converter-color-plane::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.converter-color-plane::before {
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.converter-color-plane::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000000);
}

.converter-color-space-handle,
.converter-hue-handle {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.76), 0 4px 14px rgba(0, 0, 0, 0.34);
    pointer-events: none;
}

.converter-color-space-handle {
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
}

.converter-color-controls {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.converter-current-color {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: var(--converter-active-color);
}

.converter-hue-slider {
    position: relative;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
    cursor: pointer;
    touch-action: none;
}

.converter-hue-handle {
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.converter-error {
    min-height: 20px;
    margin: 0;
    color: #ff9f89;
    font-size: 0.78rem;
}

.converter-primary-action,
.converter-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.converter-primary-action {
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: #ffffff;
    color: #050505;
}

.converter-secondary-action {
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    justify-self: start;
}

.converter-primary-action:hover,
.converter-secondary-action:hover {
    transform: translateY(-2px);
}

.converter-secondary-action:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.converter-shade-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
}

.converter-shade-strip {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    min-height: 58px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.converter-shade-swatch {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 58px;
    border: 0;
    color: inherit;
    overflow: hidden;
}

.converter-shade-swatch span {
    opacity: 0;
    color: inherit;
    font-size: 0.66rem;
    letter-spacing: 0;
    transition: opacity 0.2s ease;
}

.converter-shade-swatch:hover span,
.converter-shade-swatch:focus-visible span {
    opacity: 0.82;
}

.converter-shade-swatch.is-selected::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.converter-shade-swatch.is-selected span {
    position: absolute;
    opacity: 0;
}

.converter-shade-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.converter-icon-button {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.converter-icon-button:hover,
.converter-icon-button.is-active {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.converter-shade-detail-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    gap: 6px;
}

.converter-shade-detail-grid button {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 8px 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.7);
}

.converter-shade-detail-grid span,
.converter-shade-detail-grid code {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.62rem;
    letter-spacing: 0;
}

.converter-shade-detail-grid span {
    color: rgba(255, 255, 255, 0.42);
}

.converter-output-table {
    display: grid;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.converter-output-row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 76px;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 10px 0 16px;
    background: rgba(255, 255, 255, 0.025);
}

.converter-output-row + .converter-output-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.converter-output-row code,
.converter-css-panel pre {
    color: rgba(255, 255, 255, 0.86);
    font-family: "Geist Mono", monospace;
    font-size: 0.82rem;
    letter-spacing: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.converter-copy-button {
    -webkit-appearance: none;
    appearance: none;
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.68);
}

.converter-copy-button.is-copied {
    width: auto;
    min-width: 66px;
    padding: 0 8px;
    color: #ffffff;
    font-size: 0.7rem;
    text-transform: lowercase;
}

.converter-copy-button:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.converter-css-panel {
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
}

.converter-css-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.converter-css-panel pre {
    margin: 0;
    padding: 16px;
    line-height: 1.7;
}

.converter-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.86);
    color: #ffffff;
    font-size: 0.78rem;
    letter-spacing: 0;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

body.converter-export-open {
    overflow: hidden;
}

.converter-export-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: stretch;
}

.converter-export-modal[hidden] {
    display: none !important;
}

.converter-export-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.converter-export-sheet {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: min(94vw, 1260px);
    height: min(92dvh, 860px);
    max-height: calc(100dvh - 48px);
    margin: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        #0d0d0d;
    color: #f5f5f5;
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.42);
}

.converter-export-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.converter-export-header h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Geist", sans-serif;
    font-size: 1.65rem;
    font-weight: 300;
    letter-spacing: 0;
}

.converter-export-download {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: #ffffff;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.converter-export-download:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: translateY(-1px);
}

.converter-export-body {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 0;
    overflow: auto;
    scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.converter-export-nav {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 34px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.converter-export-nav-item {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.converter-export-nav-item.is-active,
.converter-export-nav-item:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.converter-export-nav-item strong {
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 0;
    font-family: "Geist", sans-serif;
}

.converter-export-nav-item span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.88rem;
    letter-spacing: 0;
}

.converter-export-main {
    display: grid;
    grid-template-rows: auto auto;
    min-width: 0;
    padding: 32px;
}

.converter-export-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.converter-export-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.converter-export-tabs button {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    letter-spacing: 0;
}

.converter-export-tabs button.is-active,
.converter-export-tabs button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.converter-prefix-field {
    position: relative;
    display: block;
    width: min(280px, 100%);
}

.converter-prefix-field span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.converter-prefix-field input {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    outline: none;
    font-size: 0.98rem;
    letter-spacing: 0;
}

.converter-prefix-field input::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.converter-export-content {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.52fr);
    gap: 24px;
    min-height: 594px;
}

.converter-export-palette {
    display: grid;
    min-height: 594px;
    overflow: hidden;
    border-radius: 18px;
}

.converter-export-palette-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 38px;
    align-items: center;
    min-height: 54px;
    padding: 0 14px;
}

.converter-export-palette-row code {
    justify-self: end;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
    font-family: "Geist Mono", monospace;
    font-size: 0.93rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.converter-export-palette-row span {
    opacity: 0.76;
    font-size: 0.82rem;
    letter-spacing: 0;
}

.converter-export-palette-row button {
    -webkit-appearance: none;
    appearance: none;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    justify-self: end;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    color: inherit;
}

.converter-export-palette-row button.is-copied {
    width: auto;
    min-width: 68px;
    padding: 0 8px;
    font-size: 0.72rem;
    text-transform: lowercase;
}

.converter-export-code-wrap {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    min-width: 0;
    min-height: 0;
}

.converter-export-code-wrap pre {
    min-height: 0;
    margin: 0;
    overflow: auto;
    padding: 26px 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.9);
    font-family: "Geist Mono", monospace;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.6;
    white-space: pre;
}

.converter-copy-export {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.converter-copy-export:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1060px) {
    .converter-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .converter-hero-copy {
        padding-top: 0;
    }

    .converter-hero h1 {
        font-size: 4rem;
    }

    .converter-export-sheet {
        width: calc(100% - 28px);
        height: calc(100dvh - 28px);
        border-radius: 22px;
    }

    .converter-export-body {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .converter-export-main {
        padding: 24px;
    }

    .converter-export-content {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .converter-export-palette {
        min-height: 594px;
    }
}

@media (max-width: 760px) {
    .converter-main {
        padding: 32px 0 18px;
    }

    .converter-hero h1 {
        font-size: 3rem;
    }

    .converter-workbench {
        padding: 18px;
        border-radius: 24px;
    }

    .converter-output-row {
        grid-template-columns: 68px minmax(0, 1fr) 70px;
        gap: 8px;
        padding-left: 12px;
    }

    .converter-output-row code,
    .converter-css-panel pre {
        font-size: 0.76rem;
    }

    .converter-shade-shell {
        grid-template-columns: 1fr;
    }

    .converter-shade-actions {
        justify-content: flex-end;
    }

    .converter-shade-detail-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .converter-export-body {
        grid-template-columns: 1fr;
        overflow: auto;
    }

    .converter-export-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .converter-export-nav-item {
        padding: 14px;
    }

    .converter-export-toolbar {
        display: grid;
    }

    .converter-export-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .converter-prefix-field {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .converter-hero h1 {
        font-size: 2.35rem;
    }

    .converter-intro {
        font-size: 0.88rem;
    }

    .converter-input-row {
        grid-template-columns: 1fr;
    }

    .converter-color-plane {
        min-height: 150px;
    }

    .converter-shade-strip {
        min-height: 46px;
    }

    .converter-shade-swatch {
        min-height: 46px;
    }

    .converter-shade-swatch.is-selected::after {
        width: 6px;
        height: 6px;
    }

    .converter-icon-button {
        width: 40px;
        height: 40px;
    }

    .converter-toast {
        right: 14px;
        bottom: 14px;
    }

    .converter-export-sheet {
        width: 100%;
        height: 100dvh;
        border-radius: 0;
    }

    .converter-export-header {
        padding: 16px 18px;
    }

    .converter-export-download {
        width: 100%;
    }

    .converter-export-header h2 {
        font-size: 1.35rem;
    }

    .converter-export-nav {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .converter-export-main {
        padding: 18px;
    }

    .converter-export-tabs {
        gap: 8px;
    }

    .converter-export-tabs button {
        padding: 0 14px;
    }

    .converter-export-code-wrap pre {
        padding: 18px;
        font-size: 0.82rem;
    }
}
