: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: #f5f1ea;
    --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 */
}

* {
    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 {
    max-width: 100%;
    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;
}

.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: 18px 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(13, 13, 13, 0.84);
    backdrop-filter: blur(20px);
    box-shadow: none;
    overflow: hidden;
    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: 32px;
    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.5);
    font-weight: 300;
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
}

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

.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;
    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: 1;
    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: 700;
    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 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.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: 10px 48px;
    border-radius: 44px;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
}

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

.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%); }
}

/* ── 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: 1.4rem;
    font-weight: 600;
    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;
}

.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;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--muted-strong);
}

.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);
}

.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: "Giest", 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 {
    border-top: 1px solid var(--border);
    padding: 16px 0;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

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

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

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

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

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

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.footer-social a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.footer-social 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) {
    .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) {
    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@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;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

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

    .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;
    }

    .filter-panel {
        position: static;
    }

    .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 {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-social {
        margin-left: 0;
    }
}

@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-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;
    }

    .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;
    }
}

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

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

    .hero {
        padding: 16px;
    }

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

    .hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
        margin-top: 24px;
    }

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

    .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;
    }

    .brand-logo {
        height: 26px;
    }

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

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

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

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

/* ═══════════════════════════════════════════
   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;
    }
}
