:root {
    --uxc-bg: #02070e;
    --uxc-bg-2: #05101b;
    --uxc-navy: #08121e;
    --uxc-navy-2: #0a1726;
    --uxc-surface: rgba(255, 255, 255, 0.045);
    --uxc-surface-strong: rgba(255, 255, 255, 0.075);
    --uxc-border: rgba(244, 223, 165, 0.2);
    --uxc-border-soft: rgba(255, 255, 255, 0.08);
    --uxc-gold: #d6b76a;
    --uxc-gold-light: #f4dfa5;
    --uxc-gold-deep: #b98d39;
    --uxc-text: #ffffff;
    --uxc-muted: #a9b4c3;
    --uxc-muted-2: #7e8a9a;
    --uxc-success: #31d17d;
    --uxc-blue: #1a4e82;
    --uxc-radius: 16px;
    --uxc-radius-lg: 30px;
    --uxc-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    --uxc-container: 1320px;
    --uxc-font-ar: "IBM Plex Sans Arabic", system-ui, sans-serif;
    --uxc-font-en: "Inter", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--uxc-text);
    background:
        radial-gradient(circle at 18% 7%, rgba(214, 183, 106, 0.17), transparent 30rem),
        radial-gradient(circle at 80% 18%, rgba(26, 78, 130, 0.34), transparent 38rem),
        linear-gradient(180deg, var(--uxc-navy) 0%, var(--uxc-bg) 58%, #02060c 100%);
    font-family: var(--uxc-font-en);
    line-height: 1.6;
}

main {
    flex: 1 0 auto;
}

html[lang^="ar"] body,
body.rtl {
    font-family: var(--uxc-font-ar);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 0%, black, transparent 72%);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.skip-link {
    position: absolute;
    inset-inline-start: 16px;
    top: -120px;
    z-index: 20;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--uxc-bg);
    background: var(--uxc-gold);
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(var(--uxc-container), calc(100% - 56px));
    margin-inline: auto;
}

.narrow {
    max-width: 860px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--uxc-border-soft);
    background: rgba(2, 7, 14, 0.72);
    backdrop-filter: blur(18px);
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 260ms ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-height: 76px;
}

.site-header .header-inner {
    width: min(100% - 72px, 1760px);
    max-width: none;
}

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

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo-link img,
.brand img {
    width: auto;
    max-width: min(260px, 42vw);
    max-height: 56px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--uxc-border);
    border-radius: 14px;
    color: var(--uxc-gold);
    background: rgba(214, 183, 106, 0.08);
    font-weight: 800;
}

.brand-copy {
    display: grid;
    gap: 0;
}

.brand-copy strong {
    font-size: 15px;
    line-height: 1.2;
}

.brand-copy small {
    color: var(--uxc-muted);
    font-size: 12px;
}

.primary-nav {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 20px;
}

.menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: clamp(18px, 2vw, 34px);
}

.menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: var(--uxc-muted);
    font-size: 14px;
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.menu a::after {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: block;
    height: 2px;
    border-radius: 999px;
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    background: linear-gradient(90deg, transparent, var(--uxc-gold-light), var(--uxc-gold), transparent);
    box-shadow: 0 0 18px rgba(214, 183, 106, 0.62), 0 8px 24px rgba(214, 183, 106, 0.16);
    transition: opacity 180ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu a:hover,
.menu a:focus-visible {
    color: var(--uxc-gold-light);
    transform: translateY(-1px);
}

.menu .current-menu-item > a,
.menu .current_page_item > a,
.menu .current-menu-ancestor > a,
.menu a.is-pending {
    color: var(--uxc-gold-light);
}

.menu .current-menu-item > a::after,
.menu .current_page_item > a::after,
.menu .current-menu-ancestor > a::after,
.menu a.is-pending::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu.has-pending .current-menu-item > a:not(.is-pending)::after,
.menu.has-pending .current_page_item > a:not(.is-pending)::after,
.menu.has-pending .current-menu-ancestor > a:not(.is-pending)::after {
    opacity: 0;
    transform: scaleX(0.35);
}

.menu a.is-settling {
    animation: navSettle 520ms ease both;
}

body.is-page-ready main {
    animation: pageArrive 520ms ease both;
}

body.is-page-leaving main,
body.is-page-leaving .site-footer {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

body.is-page-leaving .site-header {
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 12px;
    background: var(--uxc-surface);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--uxc-text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(244, 223, 165, 0.34);
    border-radius: 999px;
    color: #101010;
    background: linear-gradient(135deg, var(--uxc-gold-light), var(--uxc-gold) 58%, var(--uxc-gold-deep));
    box-shadow: 0 14px 40px rgba(214, 183, 106, 0.22);
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(214, 183, 106, 0.29);
}

.btn-small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 13px;
}

.btn-ghost {
    color: var(--uxc-text);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: clamp(76px, 7vw, 118px) 0;
    overflow: clip;
}

.hero::after {
    position: absolute;
    inset-inline: 0;
    bottom: -1px;
    height: 220px;
    pointer-events: none;
    content: "";
    background: linear-gradient(0deg, var(--uxc-bg), transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: clamp(36px, 7vw, 88px);
}

.hero h1,
.section-heading h2,
.join-panel h2,
.prose h1 {
    max-width: 960px;
    margin: 0;
    line-height: 1.02;
    font-size: clamp(50px, 5.05vw, 78px);
    font-weight: 800;
}

.section-heading h2,
.join-panel h2,
.prose h1 {
    font-size: clamp(42px, 4vw, 64px);
}

.hero-lead {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--uxc-muted);
    font-size: clamp(18px, 1.45vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    margin: 0 0 16px;
    border: 1px solid var(--uxc-border);
    border-radius: 999px;
    color: var(--uxc-gold);
    background: rgba(214, 183, 106, 0.08);
    font-size: 13px;
    font-weight: 800;
}

.hero-visual {
    display: grid;
    min-height: 620px;
    place-items: center;
}

.hero-portrait-frame {
    position: relative;
    isolation: isolate;
    display: grid;
    width: min(100%, 590px);
    min-height: 620px;
    align-items: end;
    overflow: hidden;
    border: 1px solid rgba(244, 223, 165, 0.32);
    border-radius: 74px 28px 28px 28px;
    background:
        radial-gradient(circle at 68% 28%, rgba(214, 183, 106, 0.18), transparent 14rem),
        radial-gradient(circle at 82% 18%, rgba(26, 78, 130, 0.32), transparent 24rem),
        linear-gradient(135deg, rgba(9, 19, 33, 0.94), rgba(2, 7, 14, 0.98));
    box-shadow: var(--uxc-shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.hero-portrait-frame::before {
    position: absolute;
    inset: 11% -4% auto auto;
    z-index: 0;
    width: 86%;
    aspect-ratio: 1;
    content: "";
    border: 2px solid rgba(244, 223, 165, 0.68);
    border-radius: 50%;
    box-shadow:
        0 0 22px rgba(214, 183, 106, 0.42),
        inset 0 0 28px rgba(214, 183, 106, 0.07);
    filter: drop-shadow(0 0 12px rgba(214, 183, 106, 0.36));
    animation: uxcPulseRing 4.6s ease-in-out infinite;
}

.hero-portrait-frame::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    background:
        repeating-linear-gradient(90deg, transparent 0 32px, rgba(244, 223, 165, 0.22) 33px, transparent 34px),
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 100% 100%, 52px 52px, 52px 52px;
    mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 76%, transparent 100%);
    opacity: 0.72;
    animation: uxcGridDrift 10s ease-in-out infinite;
}

.hero-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    z-index: 1;
    background: linear-gradient(180deg, transparent 2%, rgba(244, 223, 165, 0.78) 34%, rgba(244, 223, 165, 0.16) 72%, transparent);
    opacity: 0.66;
    animation: uxcLineGlow 3.8s ease-in-out infinite;
}

.hero-line-1 {
    inset-inline-start: 12%;
}

.hero-line-2 {
    inset-inline-start: 17%;
    animation-delay: 0.8s;
}

.hero-ring {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(244, 223, 165, 0.16);
    border-radius: 50%;
    animation: uxcSlowSpin 18s linear infinite;
}

.hero-ring-1 {
    inset: 18% 3% auto auto;
    width: 76%;
    aspect-ratio: 1;
}

.hero-ring-2 {
    inset: 23% 10% auto auto;
    width: 59%;
    aspect-ratio: 1;
    animation-direction: reverse;
    animation-duration: 22s;
}

.hero-person {
    position: relative;
    z-index: 2;
    width: min(72%, 380px);
    margin-inline-start: 7%;
    align-self: end;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.42));
}

.hero-session-card {
    position: absolute;
    inset-inline-end: 6%;
    top: 43%;
    z-index: 3;
    width: min(47%, 290px);
    padding: 22px;
    border: 1px solid rgba(244, 223, 165, 0.22);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(2, 7, 14, 0.42), rgba(8, 18, 30, 0.22));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), inset 0 0 26px rgba(214, 183, 106, 0.035);
    backdrop-filter: blur(22px) saturate(1.2);
}

.hero-session-card h2 {
    margin: 12px 0 8px;
    font-size: clamp(26px, 2.4vw, 40px);
    line-height: 1.05;
}

.hero-session-card p {
    margin: 0;
    color: var(--uxc-muted);
    font-size: 14px;
}

.gold-orbit {
    position: sticky;
    top: 118px;
    display: grid;
    width: min(100%, 560px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(244, 223, 165, 0.38);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(214, 183, 106, 0.14), transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 0 70px rgba(244, 223, 165, 0.1), var(--uxc-shadow);
}

.gold-orbit::before,
.gold-orbit::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    border: 1px solid rgba(244, 223, 165, 0.16);
}

.gold-orbit::before {
    inset: 24px;
}

.gold-orbit::after {
    inset: 54px;
}

.speaker-card {
    position: relative;
    z-index: 1;
    width: min(78%, 390px);
    padding: 34px;
    border: 1px solid var(--uxc-border);
    border-radius: var(--uxc-radius-lg);
    background: rgba(8, 18, 30, 0.84);
    box-shadow: var(--uxc-shadow);
    backdrop-filter: blur(16px);
}

.speaker-card h2 {
    margin: 18px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.speaker-card p {
    margin: 0;
    color: var(--uxc-muted);
}

.session-badge {
    color: var(--uxc-success);
    font-size: 13px;
    font-weight: 800;
}

.section {
    padding: clamp(82px, 7vw, 128px) 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    border-block: 1px solid var(--uxc-border-soft);
}

.section-heading {
    max-width: 900px;
    margin-bottom: 42px;
}

.value-grid,
.content-grid,
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

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

.session-feature-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    max-width: 760px;
    min-height: 0;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(244, 223, 165, 0.22);
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 0%, rgba(214, 183, 106, 0.13), transparent 16rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: var(--uxc-shadow);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.session-feature-card:hover,
.session-feature-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(244, 223, 165, 0.42);
    background:
        radial-gradient(circle at 92% 0%, rgba(214, 183, 106, 0.18), transparent 16rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.session-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.session-pills span,
.session-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(244, 223, 165, 0.28);
    border-radius: 999px;
    color: var(--uxc-gold-light);
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
    font-weight: 800;
}

.session-pills span::after {
    width: 10px;
    height: 10px;
    margin-inline-start: 12px;
    border-radius: 50%;
    content: "";
    background: var(--uxc-gold);
    box-shadow: 0 0 18px rgba(214, 183, 106, 0.62);
}

.session-feature-card h3 {
    max-width: 560px;
    margin: 0;
    color: var(--uxc-text);
    font-size: clamp(26px, 2.7vw, 42px);
    line-height: 1.12;
}

.session-feature-card h3 strong,
.session-feature-card h3 em,
.session-feature-card h3 span {
    color: var(--uxc-gold);
}

.session-feature-card p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--uxc-muted);
    font-size: 15px;
}

.session-meta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    max-width: 430px;
}

.session-meta-row span {
    justify-content: center;
    min-height: 42px;
    border-radius: 14px;
}

.session-teaser-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #101010;
    background: linear-gradient(135deg, var(--uxc-gold-light), var(--uxc-gold) 58%, var(--uxc-gold-deep));
    box-shadow: 0 12px 34px rgba(214, 183, 106, 0.24);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.content-grid > .card:only-child,
.mentor-grid > .card:only-child {
    grid-column: span 2;
    max-width: 640px;
}

.card {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: var(--uxc-radius);
    background: var(--uxc-surface);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--uxc-border);
    background: var(--uxc-surface-strong);
}

.card h2,
.card h3 {
    margin: 0 0 14px;
    line-height: 1.18;
    font-size: clamp(24px, 1.6vw, 30px);
}

.card p {
    margin: 0;
    color: var(--uxc-muted);
    font-size: 16px;
}

.card-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--uxc-border);
    border-radius: 14px;
    background:
        radial-gradient(circle at 35% 20%, rgba(244, 223, 165, 0.24), transparent 56%),
        linear-gradient(135deg, rgba(244, 223, 165, 0.16), rgba(214, 183, 106, 0.045));
    box-shadow: inset 0 0 20px rgba(214, 183, 106, 0.055), 0 12px 30px rgba(0, 0, 0, 0.18);
}

.card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--uxc-gold-light);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.resource-rail-wrap {
    position: relative;
    margin-inline: 0;
    padding-inline: 0;
}

.resource-rail-wrap::before,
.resource-rail-wrap::after {
    display: none;
}

.resource-rail-wrap::before {
    inset-inline-start: 0;
    background: linear-gradient(90deg, var(--uxc-bg), transparent);
}

.resource-rail-wrap::after {
    inset-inline-end: 0;
    background: linear-gradient(270deg, var(--uxc-bg), transparent);
}

.resource-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 4px 0 0;
}

.resource-rail::-webkit-scrollbar {
    height: 10px;
}

.resource-rail::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
}

.resource-rail::-webkit-scrollbar-thumb {
    border: 2px solid rgba(2, 7, 14, 0.9);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--uxc-gold-light), var(--uxc-gold-deep));
}

.resource-home-card {
    position: relative;
    min-height: 250px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--uxc-border-soft);
    border-radius: var(--uxc-radius);
    background:
        radial-gradient(circle at 18% 0%, rgba(244, 223, 165, 0.14), transparent 15rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.resource-home-card::after {
    position: absolute;
    inset-inline-end: -28px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(244, 223, 165, 0.16);
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(214, 183, 106, 0.1), transparent 62%);
}

.resource-home-card:hover,
.resource-home-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--uxc-border);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), 0 0 34px rgba(214, 183, 106, 0.08);
    background:
        radial-gradient(circle at 18% 0%, rgba(244, 223, 165, 0.18), transparent 15rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
}

@keyframes pageArrive {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navSettle {
    0% {
        color: var(--uxc-text);
        text-shadow: 0 0 0 rgba(214, 183, 106, 0);
    }
    35% {
        color: var(--uxc-gold-light);
        text-shadow: 0 0 18px rgba(214, 183, 106, 0.5);
    }
    100% {
        color: var(--uxc-gold-light);
        text-shadow: 0 0 0 rgba(214, 183, 106, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.resource-home-icon {
    position: relative;
    z-index: 1;
}

.resource-home-count {
    position: absolute;
    inset-block-start: 28px;
    inset-inline-end: 28px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(244, 223, 165, 0.22);
    border-radius: 999px;
    color: var(--uxc-gold-light);
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    font-weight: 800;
}

.resource-home-card h3 {
    position: relative;
    z-index: 1;
    max-width: 250px;
    margin: 8px 0 12px;
    font-size: clamp(24px, 2vw, 31px);
    line-height: 1.12;
}

.resource-home-card p {
    position: relative;
    z-index: 1;
    max-width: 270px;
    margin: 0;
    color: var(--uxc-muted);
    font-size: 15px;
}

.mentor-card img,
.featured-media img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
}

.join-section {
    padding-bottom: clamp(86px, 10vw, 150px);
}

.join-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 48px;
    align-items: center;
    padding: clamp(36px, 5vw, 70px);
    border: 1px solid var(--uxc-border);
    border-radius: var(--uxc-radius-lg);
    background:
        radial-gradient(circle at 15% 0%, rgba(214, 183, 106, 0.17), transparent 24rem),
        rgba(255, 255, 255, 0.045);
    box-shadow: var(--uxc-shadow);
}

.uxc-form {
    display: grid;
    gap: 12px;
}

.uxc-form label {
    display: grid;
    gap: 6px;
    color: var(--uxc-muted);
    font-size: 13px;
    font-weight: 700;
}

.uxc-form input,
.uxc-form select,
.uxc-form textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 12px;
    color: var(--uxc-text);
    background: rgba(255, 255, 255, 0.055);
    padding: 10px 12px;
    font: inherit;
}

.uxc-form textarea {
    min-height: 100px;
    resize: vertical;
}

.uxc-form input:focus,
.uxc-form select:focus,
.uxc-form textarea:focus {
    outline: 2px solid rgba(214, 183, 106, 0.42);
    outline-offset: 2px;
}

.form-message {
    color: var(--uxc-success);
    font-weight: 800;
}

.prose {
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--uxc-border-soft);
    border-radius: var(--uxc-radius-lg);
    background: rgba(255, 255, 255, 0.04);
}

.prose p,
.prose li {
    color: var(--uxc-muted);
    font-size: 18px;
}

.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--uxc-border-soft);
    background: rgba(2, 7, 14, 0.8);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 52px 0;
}

.footer-bottom {
    padding: 18px 0 30px;
    color: var(--uxc-muted-2);
    font-size: 14px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.resources-page {
    padding: 96px 0 120px;
}

.resources-hero {
    width: min(100%, 900px);
    margin-inline: auto;
    text-align: center;
}

.resources-hero h1 {
    max-width: 860px;
    margin: 10px auto 18px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: 0;
}

.resources-hero p:not(.eyebrow) {
    max-width: 740px;
    margin: 0 auto;
    color: var(--uxc-muted);
    font-size: 19px;
}

.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 42px auto 72px;
    flex-wrap: wrap;
}

.resource-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 999px;
    color: var(--uxc-muted);
    background: rgba(255, 255, 255, 0.035);
    font-weight: 800;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.resource-tab:hover {
    transform: translateY(-1px);
    color: var(--uxc-text);
    border-color: var(--uxc-border);
}

.resource-tab.is-active {
    color: #07101b;
    border-color: rgba(244, 223, 165, 0.88);
    background: linear-gradient(135deg, var(--uxc-gold-light), var(--uxc-gold-deep));
    box-shadow: 0 16px 34px rgba(214, 183, 106, 0.18);
}

.resource-panel {
    scroll-margin-top: 110px;
}

.resource-panel-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.resource-panel-heading p:not(.eyebrow) {
    margin: 10px 0 0;
    color: var(--uxc-muted);
}

.resource-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.resource-side-nav {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(244, 223, 165, 0.08), transparent 46%),
        rgba(255, 255, 255, 0.045);
    box-shadow: var(--uxc-shadow);
}

.resource-side-nav span {
    margin-bottom: 6px;
    color: var(--uxc-gold-light);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.resource-side-nav a {
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--uxc-muted);
    font-size: 14px;
    font-weight: 700;
}

.resource-side-nav a:hover {
    color: var(--uxc-text);
    border-color: var(--uxc-border);
    background: rgba(214, 183, 106, 0.08);
}

.resource-side-nav a.is-active {
    color: #07101b;
    border-color: rgba(244, 223, 165, 0.9);
    background: linear-gradient(135deg, var(--uxc-gold-light), var(--uxc-gold-deep));
    box-shadow: 0 12px 28px rgba(214, 183, 106, 0.18);
}

.resource-content {
    display: grid;
    gap: 28px;
}

.resource-section {
    padding: 28px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 0%, rgba(214, 183, 106, 0.1), transparent 26rem),
        rgba(255, 255, 255, 0.035);
}

.resource-section-head {
    max-width: 720px;
    margin-bottom: 22px;
}

.resource-section-head h3 {
    margin: 4px 0 8px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.resource-section-head p:not(.eyebrow) {
    margin: 0;
    color: var(--uxc-muted);
}

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

.resource-link-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    min-height: 132px;
    padding: 18px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 16px;
    background: rgba(2, 7, 14, 0.5);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.resource-link-card:hover {
    transform: translateY(-3px);
    border-color: var(--uxc-border);
    background: rgba(255, 255, 255, 0.065);
}

.resource-link-icon {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(244, 223, 165, 0.28);
    border-radius: 11px;
    color: var(--uxc-gold-light);
    background: rgba(214, 183, 106, 0.1);
}

.resource-link-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.resource-link-card strong {
    align-self: center;
    color: var(--uxc-text);
    font-size: 18px;
    line-height: 1.2;
}

.resource-link-card span:last-child {
    grid-column: 2;
    color: var(--uxc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.resource-placeholder {
    width: min(100%, 850px);
    margin: 34px auto 0;
    padding: 34px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 24px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(244, 223, 165, 0.08), transparent 46%),
        rgba(255, 255, 255, 0.04);
}

.resource-placeholder h2 {
    margin: 8px 0 8px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
}

.resource-placeholder p:not(.eyebrow) {
    max-width: 590px;
    margin: 0 auto;
    color: var(--uxc-muted);
}

.hub-page {
    padding: 96px 0 120px;
}

.hub-hero {
    width: min(100%, 980px);
    margin-inline: auto;
    text-align: center;
}

.hub-hero h1 {
    max-width: 920px;
    margin: 10px auto 18px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hub-hero p:not(.eyebrow) {
    max-width: 820px;
    margin: 0 auto;
    color: var(--uxc-muted);
    font-size: 19px;
}

.hub-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 42px auto 72px;
    flex-wrap: wrap;
}

.hub-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 999px;
    color: var(--uxc-muted);
    background: rgba(255, 255, 255, 0.035);
    font-weight: 800;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hub-tab:hover {
    transform: translateY(-1px);
    color: var(--uxc-text);
    border-color: var(--uxc-border);
}

.hub-tab.is-active {
    color: #07101b;
    border-color: rgba(244, 223, 165, 0.88);
    background: linear-gradient(135deg, var(--uxc-gold-light), var(--uxc-gold-deep));
    box-shadow: 0 16px 34px rgba(214, 183, 106, 0.18);
}

.hub-panel {
    scroll-margin-top: 110px;
}

.hub-panel-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.hub-panel-heading p:not(.eyebrow) {
    margin: 10px 0 0;
    color: var(--uxc-muted);
}

.hub-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.hub-side-nav {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--uxc-border-soft);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(244, 223, 165, 0.08), transparent 46%),
        rgba(255, 255, 255, 0.045);
    box-shadow: var(--uxc-shadow);
}

.hub-side-nav span {
    margin-bottom: 6px;
    color: var(--uxc-gold-light);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hub-side-nav a {
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--uxc-muted);
    font-size: 14px;
    font-weight: 700;
}

.hub-side-nav a:hover {
    color: var(--uxc-text);
    border-color: var(--uxc-border);
    background: rgba(214, 183, 106, 0.08);
}

.hub-side-nav a.is-active {
    color: #07101b;
    border-color: rgba(244, 223, 165, 0.9);
    background: linear-gradient(135deg, var(--uxc-gold-light), var(--uxc-gold-deep));
    box-shadow: 0 12px 28px rgba(214, 183, 106, 0.18);
}

.hub-content {
    min-width: 0;
    opacity: 1;
    transform: none;
}

.hub-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hub-card-grid-featured {
    grid-template-columns: 1fr;
}

.hub-bookmark-groups {
    display: grid;
    gap: 48px;
}

.hub-bookmark-group {
    display: grid;
    gap: 18px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hub-bookmark-group:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hub-group-heading {
    max-width: 720px;
}

.hub-group-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 12px;
    border: 1px solid rgba(244, 223, 165, 0.24);
    border-radius: 999px;
    color: var(--uxc-gold-light);
    background: rgba(214, 183, 106, 0.08);
    font-size: 12px;
    font-weight: 800;
}

.hub-group-heading h3 {
    margin: 0;
    color: var(--uxc-text);
    font-size: clamp(26px, 2.8vw, 38px);
    line-height: 1;
    letter-spacing: -0.01em;
}

.hub-group-heading p {
    margin: 10px 0 0;
    color: var(--uxc-muted);
    font-size: 16px;
    line-height: 1.6;
}

.hub-link-card,
.hub-session-card,
.hub-empty-state {
    border: 1px solid var(--uxc-border-soft);
    border-radius: 20px;
    background:
        radial-gradient(circle at 10% 0%, rgba(214, 183, 106, 0.1), transparent 24rem),
        rgba(255, 255, 255, 0.04);
}

.hub-link-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    min-height: 132px;
    padding: 18px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hub-link-card:hover {
    transform: translateY(-3px);
    border-color: var(--uxc-border);
    background: rgba(255, 255, 255, 0.065);
}

.hub-link-icon,
.hub-empty-icon {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(244, 223, 165, 0.28);
    border-radius: 12px;
    color: var(--uxc-gold-light);
    background: rgba(214, 183, 106, 0.1);
}

.hub-link-icon svg,
.hub-empty-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hub-link-card strong {
    align-self: center;
    color: var(--uxc-text);
    font-size: 18px;
    line-height: 1.2;
}

.hub-link-card span:last-child {
    grid-column: 2;
    color: var(--uxc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hub-session-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    border-color: rgba(244, 223, 165, 0.24);
    box-shadow: var(--uxc-shadow);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hub-session-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 223, 165, 0.46);
}

.hub-session-card h3 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.04;
}

.hub-session-card p {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--uxc-muted);
    font-size: 17px;
}

.hub-empty-state {
    display: grid;
    min-height: 360px;
    place-items: center;
    padding: clamp(30px, 5vw, 64px);
    text-align: center;
}

.hub-empty-state h3 {
    max-width: 620px;
    margin: 14px auto 10px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.04;
}

.hub-empty-state p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto;
    color: var(--uxc-muted);
}

@media (max-width: 1280px) {
    .resource-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        inset-inline: 20px;
        top: 76px;
        display: none;
        flex: none;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--uxc-border-soft);
        border-radius: 18px;
        background: rgba(2, 7, 14, 0.95);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .hero-grid,
    .join-panel,
    .resource-layout,
    .hub-layout {
        grid-template-columns: 1fr;
    }

    .resource-side-nav,
    .hub-side-nav {
        position: static;
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .resource-side-nav::-webkit-scrollbar,
    .hub-side-nav::-webkit-scrollbar {
        display: none;
    }

    .resource-side-nav span,
    .resource-side-nav a,
    .hub-side-nav span,
    .hub-side-nav a {
        flex: 0 0 auto;
    }

    .content-grid > .card:only-child,
    .mentor-grid > .card:only-child {
        grid-column: span 2;
        max-width: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-portrait-frame {
        min-height: 560px;
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .hero-session-card {
        top: 40%;
    }

    .gold-orbit {
        position: relative;
        top: auto;
        width: min(100%, 430px);
    }

    .value-grid,
    .content-grid,
    .mentor-grid,
    .resource-card-grid,
    .hub-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .session-feature-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--uxc-container));
    }

    .site-header .header-inner {
        width: min(100% - 28px, var(--uxc-container));
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .hero h1,
    .section-heading h2,
    .join-panel h2,
    .prose h1,
    .resources-hero h1,
    .hub-hero h1 {
        font-size: 40px;
    }

    .custom-logo-link img,
    .brand img {
        max-width: 210px;
        max-height: 48px;
    }

    .value-grid,
    .content-grid,
    .mentor-grid,
    .resource-card-grid,
    .hub-card-grid {
        grid-template-columns: 1fr;
    }

    .resources-page,
    .hub-page {
        padding: 58px 0 78px;
    }

    .resources-hero p:not(.eyebrow),
    .hub-hero p:not(.eyebrow) {
        font-size: 16px;
    }

    .resource-tabs,
    .hub-tabs {
        justify-content: flex-start;
        margin-bottom: 44px;
    }

    .resource-tab,
    .hub-tab {
        min-height: 42px;
        padding-inline: 16px;
        font-size: 14px;
    }

    .resource-section {
        padding: 20px;
        border-radius: 20px;
    }

    .resource-link-card {
        min-height: auto;
    }

    .resource-rail-wrap {
        margin-inline: 0;
        padding-inline: 0;
    }

    .resource-rail {
        grid-template-columns: 1fr;
    }

    .resource-home-card {
        min-height: 250px;
        padding: 22px;
    }

    .resource-home-count {
        inset-block-start: 22px;
        inset-inline-end: 22px;
    }

    .hub-link-card {
        min-height: auto;
    }

    .hub-session-card {
        grid-template-columns: 1fr;
    }

    .content-grid > .card:only-child,
    .mentor-grid > .card:only-child {
        grid-column: span 1;
    }

    .speaker-card {
        width: 82%;
        padding: 24px;
    }

    .hero-portrait-frame {
        min-height: 480px;
        border-radius: 46px 20px 20px 20px;
    }

    .hero-person {
        width: 76%;
        margin-inline-start: 0;
    }

    .hero-session-card {
        inset-inline-end: 5%;
        top: auto;
        bottom: 5%;
        width: 58%;
        padding: 14px;
    }

    .hero-session-card h2 {
        font-size: 21px;
        line-height: 1.08;
    }

    .hero-session-card p {
        font-size: 14px;
        line-height: 1.45;
    }

    .hero-session-card .session-badge {
        font-size: 12px;
    }

    .session-feature-card {
        min-height: auto;
        padding: 20px;
    }

    .session-feature-card h3 {
        font-size: 28px;
    }

    .session-feature-card p {
        font-size: 17px;
    }

    .session-meta-row {
        grid-template-columns: 1fr;
    }

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

@keyframes uxcPulseRing {
    0%, 100% {
        opacity: 0.72;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.025);
    }
}

@keyframes uxcLineGlow {
    0%, 100% {
        opacity: 0.28;
    }
    50% {
        opacity: 0.9;
    }
}

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

@keyframes uxcGridDrift {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.58;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.82;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
