/* ===========================================
   AKANUKELAB - Results Page (Dark Theme)
   Mobile-First Responsive Design
   =========================================== */

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Page Header */
.page-header {
    padding: calc(48px + 2rem) 0 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.page-title {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.022em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    padding: 0 1rem;
    line-height: 1.6;
}

/* ===========================================
   Results Section
   =========================================== */
.results-section {
    padding: 1.5rem 0;
    background: #000000;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
}

/* Results Grid */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Result Card */
.result-card {
    background: #111111;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #252525;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 168, 255, 0.1);
}

/* Result Header */
.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.result-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.result-info {
    font-size: 0.875rem;
    color: #6b6b6b;
}

/* Result Content */
.result-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-before,
.result-after {
    padding: 1rem;
    border-radius: 12px;
}

.result-before {
    background: #1a1a1a;
}

.result-after {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.15) 0%, rgba(0, 102, 204, 0.1) 100%);
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.result-label {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.result-before .result-label {
    background: rgba(255, 255, 255, 0.1);
    color: #6b6b6b;
}

.result-after .result-label {
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    color: #ffffff;
}

.result-before p,
.result-after p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    color: #d0d0d0;
}

/* Result Quote */
.result-quote {
    padding: 1rem;
    background: #1a1a1a;
    border-left: 3px solid #00a8ff;
    border-radius: 0 12px 12px 0;
    margin-top: 0.5rem;
}

.result-quote p {
    font-size: 0.9375rem;
    font-style: italic;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   Founder Section
   =========================================== */
.founder-section {
    padding: 2rem 0;
    background: #0a0a0a;
}

.founder-card {
    background: #111111;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #252525;
}

.founder-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 0.875rem;
    color: #00a8ff;
    font-weight: 500;
}

.founder-story {
    font-size: 0.9375rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.founder-story p {
    margin-bottom: 1rem;
}

.founder-story p:last-child {
    margin-bottom: 0;
}

.founder-story strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===========================================
   Stats Section
   =========================================== */
.stats-section {
    padding: 2rem 0;
    background: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: #111111;
    border-radius: 18px;
    border: 1px solid #252525;
}

.stat-number {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #b0b0b0;
}

.stat-note {
    font-size: 0.75rem;
    color: #6b6b6b;
    margin-top: 0.25rem;
}

/* ===========================================
   Member Voices Section
   =========================================== */
.voices-section {
    padding: 3rem 0;
    background: #0a0a0a;
}

.voices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.voice-card {
    background: #111111;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.voice-card:hover {
    border-color: rgba(0, 168, 255, 0.3);
    transform: translateY(-2px);
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.voice-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #252525;
    flex-shrink: 0;
}

.voice-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.voice-text {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 12px;
    border-left: 3px solid #00a8ff;
}

@media (min-width: 640px) {
    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .voices-section {
        padding: 4rem 0;
    }
    
    .voices-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .voice-card {
        padding: 1.5rem;
    }
}

/* ===========================================
   VOICES BEFORE/AFTER CARDS
   =========================================== */
.voices-ba-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.voice-ba-card {
    background: #111111;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.voice-ba-card:hover {
    border-color: rgba(0, 168, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 168, 255, 0.1);
}

.voice-ba-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.voice-ba-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.voice-ba-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.voice-ba-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.voice-ba-before,
.voice-ba-after {
    padding: 1rem;
    border-radius: 12px;
}

.voice-ba-before {
    background: #1a1a1a;
}

.voice-ba-after {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.15) 0%, rgba(0, 102, 204, 0.1) 100%);
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.voice-ba-label {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.voice-ba-before .voice-ba-label {
    background: rgba(255, 255, 255, 0.1);
    color: #6b6b6b;
}

.voice-ba-after .voice-ba-label {
    background: #00a8ff;
    color: #ffffff;
}

.voice-ba-before p,
.voice-ba-after p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    color: #b0b0b0;
}

.voice-ba-after p {
    color: #ffffff;
    font-weight: 500;
}

/* PC: 横スクロールスライダー形式 */
@media (min-width: 768px) {
    .voices-ba-grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin: 2rem -1rem 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .voices-ba-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .voices-ba-grid::-webkit-scrollbar-track {
        background: #1a1a1a;
        border-radius: 4px;
    }
    
    .voices-ba-grid::-webkit-scrollbar-thumb {
        background: #00a8ff;
        border-radius: 4px;
    }
    
    .voices-ba-grid::-webkit-scrollbar-thumb:hover {
        background: #33b9ff;
    }
    
    .voice-ba-card {
        flex: 0 0 350px;
        scroll-snap-align: start;
    }
    
    /* Before/Afterは縦並びのまま維持 */
    .voice-ba-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .voices-ba-grid {
        margin: 2rem -1.5rem 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .voice-ba-card {
        flex: 0 0 400px;
        padding: 2rem;
    }
}

/* ===========================================
   CTA Section
   =========================================== */
.results-cta {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.results-cta h2 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.results-cta .cta-text {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.results-cta .cta-note {
    font-size: 0.875rem;
    color: #6b6b6b;
    margin-top: 1rem;
}

/* ===========================================
   TABLET RESPONSIVE (768px+)
   =========================================== */
@media (min-width: 768px) {
    .page-header {
        padding: calc(48px + 3rem) 0 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .results-section {
        padding: 2rem 0;
    }
    
    .results-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .result-card {
        padding: 2rem;
    }
    
    .result-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .founder-section {
        padding: 3rem 0;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .founder-header {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }
    
    .founder-avatar {
        margin-bottom: 0;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .results-cta {
        padding: 4rem 0;
    }
}

/* ===========================================
   DESKTOP RESPONSIVE (1024px+)
   =========================================== */
@media (min-width: 1024px) {
    .page-header {
        padding: calc(48px + 4rem) 0 3rem;
    }
    
    .results-section {
        padding: 3rem 0;
    }
    
    .result-card {
        padding: 2.5rem;
    }
    
    .founder-section {
        padding: 4rem 0;
    }
    
    .founder-card {
        padding: 3rem;
    }
    
    .stats-section {
        padding: 4rem 0;
    }
    
    .results-cta {
        padding: 5rem 0;
    }
}
