/* licensor.directory - Blobitecture Design System */
/* Colors: #2c3e50, #d6eaf8, #85929e, #0b3d56, #d2b4de, #48c9b0, #5dade2, #eaf2f8 */
/* Fonts: Nunito (display 800), Quicksand (body), Inter (UI) */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: #2c3e50;
    background: #eaf2f8;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   BACKGROUND FLOATING BLOBS
   ======================================== */

.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    opacity: 0.12;
    animation: blobFloat 20s ease-in-out infinite;
}

.bg-blob-1 {
    width: 500px;
    height: 500px;
    background: #5dade2;
    top: -100px;
    right: -150px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bg-blob-2 {
    width: 350px;
    height: 350px;
    background: #d2b4de;
    top: 30%;
    left: -100px;
    animation-delay: -5s;
    animation-duration: 22s;
}

.bg-blob-3 {
    width: 280px;
    height: 280px;
    background: #48c9b0;
    top: 55%;
    right: 10%;
    animation-delay: -10s;
    animation-duration: 28s;
}

.bg-blob-4 {
    width: 400px;
    height: 400px;
    background: #7ec8e3;
    bottom: 10%;
    left: 20%;
    animation-delay: -15s;
    animation-duration: 24s;
}

.bg-blob-5 {
    width: 220px;
    height: 220px;
    background: #d2b4de;
    top: 80%;
    right: -50px;
    animation-delay: -8s;
    animation-duration: 30s;
}

@keyframes blobFloat {
    0%, 100% {
        border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
        transform: translate(30px, -20px) rotate(5deg) scale(1.05);
    }
    50% {
        border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
        transform: translate(-20px, 20px) rotate(-3deg) scale(0.95);
    }
    75% {
        border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
        transform: translate(15px, 10px) rotate(4deg) scale(1.02);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.hero-blob-container {
    position: relative;
    width: 85vw;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    color: #0b3d56;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #2c3e50;
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease-out 0.6s forwards;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 1s forwards;
}

.scroll-blob {
    width: 28px;
    height: 44px;
    border: 2px solid #5dade2;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    position: relative;
    animation: blobMorph 4s ease-in-out infinite;
}

.scroll-blob::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #5dade2;
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #85929e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Hero Accent Blobs */
.hero-accent-blob {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    animation: blobMorph 8s ease-in-out infinite;
    z-index: 0;
}

.hero-accent-1 {
    width: 180px;
    height: 180px;
    background: rgba(93, 173, 226, 0.25);
    top: 10%;
    left: 8%;
    animation-delay: -2s;
}

.hero-accent-2 {
    width: 120px;
    height: 120px;
    background: rgba(210, 180, 222, 0.3);
    bottom: 15%;
    right: 12%;
    animation-delay: -4s;
}

.hero-accent-3 {
    width: 90px;
    height: 90px;
    background: rgba(72, 201, 176, 0.25);
    top: 25%;
    right: 20%;
    animation-delay: -6s;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    }
    25% {
        border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
    }
    50% {
        border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
    }
    75% {
        border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
    }
}

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

/* ========================================
   TIMELINE SPINE
   ======================================== */

.timeline-spine {
    position: fixed;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100vh;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.timeline-svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   TIMELINE CHAMBERS
   ======================================== */

.timeline-chamber {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-chamber.visible {
    opacity: 1;
    transform: translateY(0);
}

.chamber-blob {
    position: relative;
    max-width: 720px;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(214, 234, 248, 0.7), rgba(234, 242, 248, 0.8));
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    animation: blobMorph 8s ease-in-out infinite;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(93, 173, 226, 0.2);
    box-shadow: 0 20px 60px rgba(11, 61, 86, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.chamber-blob-alt {
    background: linear-gradient(135deg, rgba(210, 180, 222, 0.35), rgba(214, 234, 248, 0.6));
    border-color: rgba(210, 180, 222, 0.3);
    animation-delay: -3s;
}

.chamber-blob-cta {
    background: linear-gradient(135deg, rgba(72, 201, 176, 0.3), rgba(93, 173, 226, 0.4));
    border-color: rgba(72, 201, 176, 0.3);
    animation-delay: -5s;
}

.chamber-glass {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.chamber-node-indicator {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #5dade2;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    display: inline-block;
    background: rgba(93, 173, 226, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.chamber-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: #0b3d56;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.chamber-body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

/* ========================================
   DETAIL BLOBS (Chapter 1)
   ======================================== */

.chamber-detail-blobs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-blob {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border: 1px solid rgba(93, 173, 226, 0.15);
    animation: blobMorph 6s ease-in-out infinite;
    min-width: 130px;
    flex: 1;
}

.detail-blob:nth-child(2) { animation-delay: -2s; }
.detail-blob:nth-child(3) { animation-delay: -4s; }

.detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #85929e;
}

.detail-value {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0b3d56;
}

/* ========================================
   LICENSOR GRID (Chapter 2)
   ======================================== */

.licensor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.licensor-type-blob {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(210, 180, 222, 0.2);
    animation: blobMorph 7s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.licensor-type-blob:nth-child(2) { animation-delay: -1.5s; }
.licensor-type-blob:nth-child(3) { animation-delay: -3s; }
.licensor-type-blob:nth-child(4) { animation-delay: -4.5s; }

.licensor-type-blob:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(11, 61, 86, 0.15);
}

.type-icon {
    width: 48px;
    height: 48px;
}

.type-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0b3d56;
}

/* ========================================
   PROCESS FLOW (Chapter 3)
   ======================================== */

.process-flow {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-blob {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #5dade2, #48c9b0);
    border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blobMorph 5s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(93, 173, 226, 0.3);
    transition: transform 0.3s ease;
}

.step-blob:hover {
    transform: scale(1.15);
}

.process-step:nth-child(3) .step-blob { animation-delay: -1s; background: linear-gradient(135deg, #48c9b0, #d2b4de); }
.process-step:nth-child(5) .step-blob { animation-delay: -2s; background: linear-gradient(135deg, #d2b4de, #5dade2); }
.process-step:nth-child(7) .step-blob { animation-delay: -3s; background: linear-gradient(135deg, #5dade2, #48c9b0); }
.process-step:nth-child(9) .step-blob { animation-delay: -4s; background: linear-gradient(135deg, #48c9b0, #d2b4de); }

.step-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.process-connector {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(93, 173, 226, 0.5), rgba(72, 201, 176, 0.5));
    border-radius: 50px;
    margin: 0 0.25rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   CATEGORY BLOBS (Chapter 4)
   ======================================== */

.category-blobs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.category-blob {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
    border: 1px solid rgba(93, 173, 226, 0.15);
    animation: blobMorph 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-blob:nth-child(1) { animation-delay: 0s; border-color: rgba(93, 173, 226, 0.3); }
.category-blob:nth-child(2) { animation-delay: -1s; border-color: rgba(210, 180, 222, 0.3); }
.category-blob:nth-child(3) { animation-delay: -2s; border-color: rgba(72, 201, 176, 0.3); }
.category-blob:nth-child(4) { animation-delay: -3s; border-color: rgba(126, 200, 227, 0.3); }
.category-blob:nth-child(5) { animation-delay: -4s; border-color: rgba(133, 146, 158, 0.3); }
.category-blob:nth-child(6) { animation-delay: -5s; border-color: rgba(11, 61, 86, 0.2); }

.category-blob:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(11, 61, 86, 0.12);
}

.cat-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0b3d56;
}

.cat-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #85929e;
}

/* ========================================
   SEARCH & DIRECTORY (Chapter 5)
   ======================================== */

.search-blob-container {
    margin-bottom: 1.5rem;
}

.search-blob {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(93, 173, 226, 0.2);
    margin-bottom: 0.75rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.search-blob:focus-within {
    border-color: #5dade2;
    box-shadow: 0 0 0 4px rgba(93, 173, 226, 0.15);
}

.search-icon {
    flex-shrink: 0;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    width: 100%;
}

.search-input::placeholder {
    color: #85929e;
}

.search-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #5dade2;
    background: rgba(93, 173, 226, 0.12);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.search-tag:hover,
.search-tag.active {
    background: #5dade2;
    color: #fff;
}

.directory-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.directory-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(93, 173, 226, 0.1);
    animation: blobMorph 9s ease-in-out infinite;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.directory-entry:nth-child(2) { animation-delay: -3s; }
.directory-entry:nth-child(3) { animation-delay: -6s; }

.directory-entry:hover {
    transform: scale(1.02) translateX(5px);
}

.entry-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    flex-shrink: 0;
    animation: blobMorph 5s ease-in-out infinite;
}

.entry-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.entry-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0b3d56;
}

.entry-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #85929e;
}

.entry-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    background: rgba(72, 201, 176, 0.15);
    color: #48c9b0;
    white-space: nowrap;
}

/* ========================================
   CTA SECTION (Chapter 6)
   ======================================== */

.cta-blobs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-blob-btn {
    position: relative;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, #5dade2, #48c9b0);
    color: #fff;
    box-shadow: 0 8px 30px rgba(93, 173, 226, 0.4);
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(93, 173, 226, 0.5);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-primary:hover .cta-glow {
    width: 300px;
    height: 300px;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.5);
    color: #0b3d56;
    border: 2px solid rgba(93, 173, 226, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    transform: scale(1.05);
    border-color: #5dade2;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.stats-blobs {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-blob {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    border: 1px solid rgba(93, 173, 226, 0.15);
    animation: blobMorph 7s ease-in-out infinite;
    flex: 1;
    min-width: 100px;
}

.stat-blob:nth-child(2) { animation-delay: -2.5s; }
.stat-blob:nth-child(3) { animation-delay: -5s; }

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #0b3d56;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #85929e;
}

/* ========================================
   FOOTER
   ======================================== */

.blob-footer {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem 2rem;
    overflow: hidden;
}

.footer-blob-bg {
    position: absolute;
    top: -100px;
    left: -10%;
    width: 120%;
    height: 300px;
    background: linear-gradient(135deg, rgba(11, 61, 86, 0.95), #1B2631);
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
}

.footer-brand {
    max-width: 250px;
}

.footer-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #d6eaf8;
}

.footer-tagline {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #85929e;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #d6eaf8;
    margin-bottom: 0.25rem;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #85929e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #5dade2;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(133, 146, 158, 0.2);
}

.footer-bottom {
    border-top-color: #B8D4E3;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #85929e;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .chamber-blob {
        padding: 2rem 1.5rem;
        border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
    }

    .licensor-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .category-blobs {
        grid-template-columns: 1fr 1fr;
    }

    .process-flow {
        gap: 0.5rem;
    }

    .process-connector {
        width: 15px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 2rem;
    }

    .stats-blobs {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .chamber-blob {
        padding: 1.5rem 1rem;
    }

    .category-blobs {
        grid-template-columns: 1fr;
    }

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

    .process-flow {
        flex-direction: column;
    }

    .process-connector {
        width: 2px;
        height: 15px;
        margin: 0;
    }

    .cta-blobs {
        flex-direction: column;
    }

    .stats-blobs {
        flex-direction: column;
    }
}

/* ========================================
   SVG DOT PATTERN OVERLAY
   ======================================== */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(93, 173, 226, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}
