/* =====================================================
   HOMEPAGE HUB - Editorial Tech Studio aesthetic
   Distinct from other pages. Bold, asymmetric, alive.
   ===================================================== */

/* JetBrains Mono for tech-detail moments - system fallback if not loaded */
.mono {
    font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
    font-feature-settings: "ss01", "ss02";
    letter-spacing: -0.02em;
}

.display {
    font-family: 'Karantina', 'IBM Plex Sans Hebrew', sans-serif;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

/* =====================================================
   HERO - asymmetric, mega type, animated gradient mesh
   ===================================================== */
.hub-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow: hidden;
    isolation: isolate;
}

.hub-hero::before {
    content: '';
    position: absolute;
    inset: -10% -10% -10% -10%;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(0, 212, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(56, 189, 248, 0.10), transparent 70%);
    filter: blur(20px);
    animation: meshDrift 20s ease-in-out infinite alternate;
    z-index: -1;
}

.hub-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: -1px -1px;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

@keyframes meshDrift {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, -2%) rotate(2deg); }
    100% { transform: translate(-2%, 2%) rotate(-2deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 220px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-eyebrow .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title-mega {
    font-family: 'Karantina', 'IBM Plex Sans Hebrew', sans-serif;
    font-weight: 700;
    font-size: clamp(3.5rem, 8.5vw, 8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hero-title-mega .accent-word {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-title-mega .strike {
    position: relative;
    color: var(--text-secondary);
    font-weight: 300;
}

.hero-title-mega .strike::after {
    content: '';
    position: absolute;
    inset: 50% 0 50% 0;
    height: 6px;
    background: var(--accent-gold);
    transform: translateY(-50%) rotate(-2deg);
    border-radius: 4px;
    opacity: 0.85;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-sub strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-gold-gradient);
    color: #0B1120;
    padding: 18px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary .arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(-4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
    padding: 17px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero side: floating quick-stats card */
.hero-side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.hero-card.tilt-1 { transform: rotate(-1.5deg); margin-right: 2rem; }
.hero-card.tilt-2 { transform: rotate(1deg); margin-left: 1.5rem; }
.hero-card.tilt-3 { transform: rotate(-0.5deg); margin-right: 0.75rem; }

.hero-card:hover {
    transform: rotate(0deg) translateY(-2px);
    border-color: rgba(212, 175, 55, 0.3);
}

.hero-card .card-label {
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    direction: ltr;
    text-align: left;
}

.hero-card .card-number {
    font-family: 'Karantina', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-card .card-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Vertical scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-hint .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--text-secondary), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-hint .scroll-line::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-cyan);
    animation: scrollPulse 2s linear infinite;
}

@keyframes scrollPulse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(40px); opacity: 0; }
}

/* =====================================================
   STATS / PROOF MARQUEE STRIP
   ===================================================== */
.proof-strip {
    background: var(--bg-alt);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.proof-marquee {
    display: flex;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.proof-strip:hover .proof-marquee {
    animation-play-state: paused;
}

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

.proof-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'IBM Plex Sans Hebrew', sans-serif;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.proof-item .num {
    font-family: 'Karantina', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.proof-item .dot-sep {
    color: var(--accent-cyan);
    opacity: 0.5;
}

/* =====================================================
   BENTO SERVICES GRID - asymmetric, alive on hover
   ===================================================== */
.bento-section {
    background: var(--bg-dark);
    padding: 100px 0;
    position: relative;
}

.bento-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.bento-header .section-eyebrow {
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    direction: ltr;
}

.bento-header h2 {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    max-width: 700px;
}

.bento-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 380px;
    text-align: left;
}

/* Bento grid: 6-col, asymmetric tiles */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.25rem;
}

/* Tile sizing - defines the bento rhythm */
.bento-tile-1 { grid-column: span 4; grid-row: span 1; } /* big */
.bento-tile-2 { grid-column: span 2; grid-row: span 1; }
.bento-tile-3 { grid-column: span 2; grid-row: span 1; }
.bento-tile-4 { grid-column: span 4; grid-row: span 1; } /* big */

.bento-tile {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.25rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
}

.bento-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 212, 255, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.bento-tile:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bento-tile:hover::before {
    opacity: 1;
}

.bento-tile.gold-accent::before {
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212, 175, 55, 0.18), transparent 60%);
}

.bento-tile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bento-tile-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.bento-tile.gold-accent .bento-tile-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.bento-tile:hover .bento-tile-icon {
    transform: scale(1.05) rotate(-3deg);
}

.bento-tile-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    direction: ltr;
}

.bento-tile.gold-accent .bento-tile-tag {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
}

.bento-tile h3 {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.bento-tile p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.bento-tile-cta {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
    direction: rtl;
}

.bento-tile.gold-accent .bento-tile-cta {
    color: var(--accent-gold);
}

.bento-tile:hover .bento-tile-cta {
    gap: 1rem;
}

/* Decoration: large background number/glyph in big tiles */
.bento-tile .bg-glyph {
    position: absolute;
    bottom: -30px;
    left: -10px;
    font-family: 'Karantina', sans-serif;
    font-size: 14rem;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    z-index: -1;
    letter-spacing: -0.05em;
}

/* =====================================================
   SOCIAL PROOF - magazine pull-quote style
   ===================================================== */
.proof-section {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.proof-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    right: 5%;
    font-family: 'Karantina', sans-serif;
    font-size: 28rem;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.05;
    pointer-events: none;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 3rem;
    min-height: 480px;
}

.pull-quote {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem 2.75rem;
    position: relative;
    overflow: hidden;
}

.pull-quote::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
}

.pull-quote .quote-mark {
    font-family: 'Karantina', sans-serif;
    font-size: 6rem;
    line-height: 0.5;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.pull-quote .quote-text {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.pull-quote .quote-attribution {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pull-quote .quote-attribution .name {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.pull-quote .quote-attribution .role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.proof-image-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    height: 100%;
    max-height: 560px;
}

.proof-image-card:hover {
    transform: scale(1.01);
    border-color: rgba(212, 175, 55, 0.3);
}

.proof-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.proof-image-card .image-overlay {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(0deg, rgba(11, 17, 32, 0.98) 0%, rgba(11, 17, 32, 0.92) 65%, transparent 100%);
    padding: 2rem 1.75rem 1.5rem;
    color: var(--text-primary);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.proof-image-card .image-overlay h4 {
    font-family: 'Karantina', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
    line-height: 1.05;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.proof-image-card .image-overlay p {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Smaller feedback strip below */
.feedback-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.feedback-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feedback-thumbs img:hover {
    opacity: 1;
    transform: scale(1.04);
    border-color: var(--accent-gold);
    z-index: 5;
}

/* Readable variant - larger, full text visible, used on mentoring page */
.feedback-readable {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.feedback-readable img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    cursor: pointer;
    opacity: 1;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #fff;
    display: block;
}

.feedback-readable img:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
    .feedback-readable { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .feedback-readable { grid-template-columns: 1fr; }
}

/* =====================================================
   ABOUT - split with strong typographic moment
   ===================================================== */
.hub-about {
    background: var(--bg-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hub-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 30% at 80% 30%, rgba(212, 175, 55, 0.08), transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(0, 212, 255, 0.06), transparent 70%);
    pointer-events: none;
}

.hub-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-portrait {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.about-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 17, 32, 0.4) 100%);
    pointer-events: none;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.about-portrait:hover img {
    transform: scale(1.03);
}

.about-portrait-frame {
    position: absolute;
    inset: -16px -16px auto auto;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    border-radius: 24px 0 0 0;
    pointer-events: none;
    z-index: 3;
}

.about-portrait-frame.bl {
    inset: auto auto -16px -16px;
    border: none;
    border-bottom: 2px solid var(--accent-cyan);
    border-right: 2px solid var(--accent-cyan);
    border-radius: 0 0 24px 0;
}

.about-tag {
    color: var(--accent-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    direction: ltr;
}

.about-headline {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-headline em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-body p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-body p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.about-credentials .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.025);
}

.about-credentials .badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

/* =====================================================
   FINAL CTA - large bold ending
   ===================================================== */
.hub-cta {
    background: var(--bg-alt);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hub-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(0, 212, 255, 0.1) 60deg, transparent 120deg, rgba(212, 175, 55, 0.1) 240deg, transparent 300deg);
    filter: blur(60px);
    animation: ctaSpin 30s linear infinite;
    opacity: 0.6;
}

@keyframes ctaSpin {
    to { transform: rotate(360deg); }
}

.hub-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hub-cta h2 {
    font-family: 'Karantina', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hub-cta h2 em {
    font-style: normal;
    color: var(--accent-gold);
}

.hub-cta p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hub-cta .actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hub-cta .channels {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hub-cta .channels a {
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: var(--transition);
}

.hub-cta .channels a:hover {
    color: var(--accent-gold);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-side { display: none; }

    .bento-grid { grid-template-columns: repeat(4, 1fr); }
    .bento-tile-1, .bento-tile-4 { grid-column: span 4; }
    .bento-tile-2, .bento-tile-3 { grid-column: span 2; }

    .proof-grid { grid-template-columns: 1fr; }
    .hub-about-grid { grid-template-columns: 1fr; }
    .feedback-thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .hub-hero { padding: 110px 0 60px; min-height: auto; }
    .hero-grid { min-height: auto; }
    .hero-title-mega { font-size: clamp(2.5rem, 11vw, 4rem); }
    .hero-actions { width: 100%; }
    .btn-primary, .btn-ghost { flex: 1; justify-content: center; min-width: 200px; }

    .scroll-hint { display: none; }

    .bento-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .bento-header p { text-align: right; max-width: 100%; }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-tile-1, .bento-tile-2, .bento-tile-3, .bento-tile-4 {
        grid-column: span 1;
    }

    .pull-quote { padding: 2.25rem 1.75rem; }
    .pull-quote .quote-text { font-size: 1.4rem; }

    .hub-about-grid { gap: 2.5rem; }
    .about-portrait { max-width: 360px; margin: 0 auto; }

    .feedback-thumbs { grid-template-columns: repeat(3, 1fr); }

    .hub-cta { padding: 80px 0; }
    .hub-cta h2 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
}
